本文整理汇总了C++中Suite::Description方法的典型用法代码示例。如果您正苦于以下问题:C++ Suite::Description方法的具体用法?C++ Suite::Description怎么用?C++ Suite::Description使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Suite
的用法示例。
在下文中一共展示了Suite::Description方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: Run
void Runner::Run()
{
Print("Starting Test Runner: %s\n", iDesc);
SetAssertThrows(true);
gPass = 0;
gFail = 0;
Suite* suite = iFirst;
TUint i=1;
for(; suite != 0; i++) {
Print("Suite %d: %s\n", i,suite->Description());
try {
suite->Test();
} catch(OpenHome::Exception& e) {
Print("\nFAILURE: Suite: %d caused an unhandled exception: %s. Exception thrown at: File: %s. Line: %d\n",i,e.Message(),e.File(),e.Line());
Print("Last successful test: %s:%d\n", gLastSuccessfulFile, gLastSuccessfulLine);
gFail++;
} catch(...) {
Print("\nFAILURE: Suite: %d caused an unhandled, unknown exception\n", i);
Print("Last successful test: %s:%d\n", gLastSuccessfulFile, gLastSuccessfulLine);
gFail++;
}
Print("\n");
Suite* finishedSuite = suite;
suite = suite->iNext;
delete finishedSuite;
}
Print("Finished Test Runner: %s\n", iDesc);
Print("%d of %d tests passed.\n",gPass, gPass+gFail);
Print("%d of %d tests failed.\n",gFail, gPass+gFail);
if (gFail != 0) {
const char* a = getenv("ABORT_ON_FAILURE");
if ( a == NULL || atoi(a) == 1 ) {
// If env var is unset, or is set to "1", then exit.
exit(1);
}
}
}