Reputation: 471
I want:
To demonstrate what I mean, for an example in C++ gtest:
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
Upvotes: 1
Views: 518
Reputation: 471
With NUnit:
return new NUnitLite.AutoRun().Execute(args);
https://docs.nunit.org/articles/nunit/running-tests/NUnitLite-Runner.html
Trivial but difficult to google.
I need "built-in" exact match to reach that document page.
Upvotes: 3