Questions tagged [nunit-console]

nunit-console.exe is the command line version of NUnit, provided so that you can run your unit tests from the command line.

nunit-console.exe is the command line version of NUnit, provided so that you can run your unit tests from the command line. This is the ideal solution when you need to run your unit tests on a build server or run code coverage with NCover. There's both an x64 and x86 version for running unit tests compiled against 32-bit and 64-bit modes.

In NUnit3, the executable was renamed nunit3-console.exe

272 questions
-1
votes
1 answer

how to create a runner class / run the spec flows through command line - C#?

Can someone help in knowing how to create a runner class in C# to run all the specflows/features like we have a runner class in java? Or is there any other way that I can run all the features through commandline ? FYI, In the existing project's…
Vinay Sagar
  • 21
  • 3
  • 9
-1
votes
1 answer

How to use filter with --explore command line option

I have group of tests divided to categories [TestFixture] [Category("someCategory")] public class MyTestClass { [Test, TestCaseSource("TestData")] public void MyTest(...) { } } I'm trying to get list of tests filtered by category…
Guy
  • 46,488
  • 10
  • 44
  • 88
1 2 3
18
19