3

The NUnit console runner only prints to the console when a test causes something to be printed.

Is there a way to make it print every test name? Something similar to mocha, shown below.

mocha tests

Nick
  • 6,366
  • 5
  • 43
  • 62

1 Answers1

5

You're looking for the --labels option.

There are various options for the level of output, on, off or all - and with v3.6, which will be released soon, there will also be before and after.

To match your picture, on is probably suitable.

--labels=on
Chris
  • 5,882
  • 2
  • 32
  • 57