-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Batch (console) runner for TestCentric #831
Comments
Initial "specs" for the console runner... Program NameExecutable is Features
Command SyntaxTwo basic options...
Note: In either case, we might allow use of Sub-CommandsIf we go the sub-command route, the initial list I'm considering is...
|
@TestCentric/gui-team Any thoughts on this? |
is there an option to continue watching the assembly and rerun all the tests like you would with |
It was an NUnit V2 GUI option and it is still an option for the TestCentric GUI. It makes sense in a GUI, since the program is kept open all the time. When a console runner is used, running on change is generally done by a separate watcher program, which launches it when it sees a change. While it could be done internally, I'm not sure I see the advantage. |
TestCentric is currently the only standalone runner, which is able to run both .NET Core and .NET Framework tests together, in one run, and combine the results.
This makes having a batch runner, which could be used in a CI environment a very attractive proposition.
The GUI itself is already run in our own CI tests. However, this somewhat wasteful of resources in the general case. A batch runner would essentially just be a different front end, displaying only to console and saving a result file as is now done.
The text was updated successfully, but these errors were encountered: