3 May
2006
3 May
'06
8:38 a.m.
When using BOOST_AUTO_TEST_SUITE or BOOST_AUTO_TEST_CASE across multiple files, is there a way to guarantee which Test Case or Suite will execute last? In particular, I want the following test to always be executed last. BOOST_AUTO_TEST_CASE(waitForUserToPressEnter) { std::cout << "Press <ENTER> to continue..." << std::endl; std::cin.get(); } I like the post-build event trick to keeping output inside Visual Studio 7, but there will be times that I don't want the tests to all run each time I compile. Thanks, Ed