8 Oct
2010
8 Oct
'10
6:08 p.m.
Gaurav N Shah
ts1->add(BOOST_TEST_CASE(&test1));
ts1->add(BOOST_TEST_CASE(&test2));
::boost::framework::master_test_suite().add(ts1);
In this case I do not want test2 function to be executed it test1 fails. How is it possible?? (I can not merge code in test1 and test2 into single function)
Add dependency of test case test2 on test case test1. Gennadiy