I'm using Boost.Test for the unit testing of my class in C++. And I already created my test case using BOOST_AUTO_TEST_CASE. But I want to manually execute my test cases in my code. Like for example I have two testcases, and each test case I want to execute manually. Do I need to create a test runner for this? If yes, how can I create a basic test runner to execute my test cases individually?
Please advise.
Many thanks.