vote up 3 vote down star

Hi,

My test suite project contains some explicit test cases, now i want to execute the test cases with the help of Nunit-console.exe. When i execute the test cases, the explicit test cases were excluded from the execution. So, i have tried to execute the test cases using the batch file in the following manner.

nunit-console.exe test1.dll nunit-console.exe test1.dll /include:Expicit

I am executing the above 2 commands with the help of batch file.But i am not able to execute the explicit test cases.

Could you please let me know how to execute explicit test cases with the help of nunit-console.exe

flag
You should probably add the nunit tag to this question. – jamesaharvey Aug 17 at 14:33
You might consider a Category instead. /include and /exclude work well with categories. That will remove some of the protection Explicit gives you. For example if you run all tests the ones with categories will be included by default. But if you are looking to be able to just run all the tests without a certain group then Category might be a better bet. – Mike Two Aug 19 at 9:56

2 Answers

vote up 2 vote down

Explicit tests can only be run with nunit-console if you name the test or test fixture on the command line, using the /fixture option.

link|flag
vote up 0 vote down

You have a typo: /include:Exp"l"icit... perhaps this is the cause?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.