本文整理汇总了C++中TestSuite::add方法的典型用法代码示例。如果您正苦于以下问题:C++ TestSuite::add方法的具体用法?C++ TestSuite::add怎么用?C++ TestSuite::add使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TestSuite
的用法示例。
在下文中一共展示了TestSuite::add方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main(int argc, char** argv)
{
TestSuite suite;
suite.add(new TestAffichage);
suite.add(new TestEnfants);
suite.add(new TestAttributs);
suite.add(new TestParsingSansErreur);
suite.add(new TestParsingAvecErreur);
suite.add(new TestParsingRepriseErreur);
suite.add(new TestParsingSansErreurAttributs);
suite.launch();
delete singleton;
}
示例2: main
int main(int argc, char *argv[]) {
TestSuite suite;
suite.add("RGBA",new test_rgba());
suite.add("Image",new test_image());
suite.add("Image mmap'ed",new test_image_mmap());
suite.add("Texture",new test_texture());
suite.add("TGA",new test_tga());
if (Image::supportsFormat(".png")) {
suite.add("PNG",new test_png());
}
if (Image::supportsFormat(".jpg")) {
suite.add("JPEG",new test_jpg());
}
suite.run();
suite.printStatus();
if (suite.hasFailures()) {
return EXIT_FAILURE;
} else {
return EXIT_SUCCESS;
}
}
示例3:
// Use automatic test initialization
TestSuite *init_unit_test_suite(int, char *[])
{
TestSuite* test =
BOOST_TEST_SUITE("Test suite for myrrh::log::policy::Policy");
test->add(BOOST_TEST_CASE(WriteSize));
test->add(BOOST_TEST_CASE(InitialFileIsNotRestricted));
test->add(BOOST_TEST_CASE(InitialFileIsRestricted));
test->add(BOOST_TEST_CASE(SeveralAttemptsNeededForUnrestrictedFile));
test->add(BOOST_TEST_CASE(InitialFileIsNotRestrictedForSeveralWritings));
test->add(BOOST_TEST_CASE(SubsequentFileIsUnrestrictedForSeveralWritings));
test->add(BOOST_TEST_CASE(WritingFails));
test->add(BOOST_TEST_CASE(PathIsRestricted));
#if WIN32
test->add(BOOST_TEST_CASE(TryingToOpenProtectedFile));
#endif
test->add(BOOST_TEST_CASE(TryingToOpenReadOnlyFile));
test->add(BOOST_TEST_CASE(FileBecomesReadOnly));
return test;
}