本文整理汇总了C++中TestResult::testsEnded方法的典型用法代码示例。如果您正苦于以下问题:C++ TestResult::testsEnded方法的具体用法?C++ TestResult::testsEnded怎么用?C++ TestResult::testsEnded使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TestResult
的用法示例。
在下文中一共展示了TestResult::testsEnded方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: runAllTests
void TestRegistry::runAllTests(TestResult& result)
{
bool groupStart = true;
result.testsStarted();
for (UtestShell *test = tests_; test != NULL; test = test->getNext()) {
if (runInSeperateProcess_) test->setRunInSeperateProcess();
if (runIgnored_) test->setRunIgnored();
if (groupStart) {
result.currentGroupStarted(test);
groupStart = false;
}
result.countTest();
if (testShouldRun(test, result)) {
result.currentTestStarted(test);
test->runOneTest(firstPlugin_, result);
result.currentTestEnded(test);
}
if (endOfGroup(test)) {
groupStart = true;
result.currentGroupEnded(test);
}
}
result.testsEnded();
currentRepetition_++;
}
示例2: runAllTests
void TestRegistry::runAllTests (TestResult& result)
{
bool groupStart = true;
result.testsStarted ();
for (Utest *test = tests; !test->isNull(); test = test->getNext ()){
if (groupStart) {
result.currentGroupStarted(test);
groupStart = false;
}
result.setProgressIndicator(test->getProgressIndicator());
result.countTest();
if (testShouldRun(test, result)) {
result.currentTestStarted(test);
test->runOneTestWithPlugins(firstPlugin_, result);
result.currentTestEnded(test);
}
if (endOfGroup (test)) {
groupStart = true;
result.currentGroupEnded(test);
}
}
result.testsEnded ();
}
示例3: end
JUnitTestOutputTestRunner& end()
{
endOfPreviousTestGroup();
delete currentTest_;
result_.testsEnded();
return *this;
}
示例4: run
void TestRegistry::run (TestResult& result)
{
result.testsStarted ();
for (Test *test = tests; test != 0; test = test->getNext ())
test->run (result);
result.testsEnded ();
}
示例5: run
//.........这里部分代码省略.........
//scan all test, and constructor the execution list
for(int i = 0; i < Number; i++)
{
Test *setup = NULL;
Test *teardown = NULL;
Test *normal = NULL;
Test *finallist = NULL;
//collect all test for this group, store them in setup, teardown & normal
for (Test *test = tests; test != 0; test = test->getNext ())
{
if(!_tcscmp( test->GetGroupName(), GroupNameArray[i] ))
{
if(test->IsSetup())
{
if(setup)
assert(0 && TEXT("Only 1 setup is allowed in each test group"));
else
setup = test;
}else if(test->IsTearDown())
{
if(teardown)
assert(0 && TEXT("Only 1 teardown is allowed in each test group"));
else
teardown = test;
}else
{
normal = test->linkRunNext(normal);
}
}
}
//construct the final running list
if(setup)
finallist = setup;
if(normal)
{
if(finallist)
finallist->setRunNext(normal);
else
finallist = normal;
}
if(teardown)
{
if(!finallist)
finallist = teardown;
else
{
Test* p = finallist;
while(p)
{
if(!p->getRunNext())
break;
p = p->getRunNext();
}
p->setRunNext(teardown);
}
}
if(finallist != NULL)
LogToDebugW(TEXT(" Test group:%s"), finallist->GetGroupName());
//run all tests
for(Test* t = finallist; t; t=t->getRunNext())
{
t->run(result);
result.addTestCount();
}
}
//for (Test *test = tests; test != 0; test = test->getNext ())
//{
// bool bRunTest = true;
// if( Number != 0 )
// {
// int i;
// for( i = 0; i < Number; i++ )
// {
// if( !_tcscmp( test->GetGroupName(), GroupNameArray[i] ) )
// break;
// }
// if( i >= Number )
// bRunTest = false;
// }
//
// if( bRunTest )
// {
// test->run (result);
// result.addTestCount();//guyu extension
// }
//}
//if( teardown )
//{
// teardown->run(result);//guyu extension
// result.addTestCount();//guyu extension
//}
result.testsEnded ();
}