문제

nunit-console doesn't give a progress indicator at the command line indicating tests that have passed or failed until all tests have run. This kinda sucks since rspec will output each passing/failing test.

Is there a way to make nunit-console indicate a passing/failing test as it's running?

If it matters, I'm passing multiple assemblies into a single command line call to nunit-console.

도움이 되었습니까?

해결책

Josh,

you'll find some code here to create an addin dll to NUnit (the instructions are simple). You could use TestStarted() and TestFinished() to write on the console that a test have started or finished, failed or succeded. I think that's what you were looking for, hope it helps!

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top