microsoft / testfx-docs

Docs for MSTest V2 test framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Custom test attribute breaks ncrunch

carlmacdiarmada opened this issue · comments

commented

Hi,

I use ncrunch for testing purposes and it seems to look for test like this :

[TestClass]
public someClass
{
   [testMethod]
   public void someMethod{
      //testExecution
    }
 }

but what I ultimately have is

[CustomTestClass]
public someClass
{
   [testMethod]
   public void someMethod{
      //testExecution
    }
 }

is there a way to have multiple [testclass] attributes to accomodate this or has anyone come across this and got a workaround?

Thanks
Carl

I will move forward by closing this issue as there is no activity. Please if you are still facing any issue, open a new issue on the main repository: https://github.com/microsoft/testfx