sync to internal repository

This commit is contained in:
Guenter Obiltschnig
2007-02-23 14:50:42 +00:00
parent 1691fc3074
commit 95bdb7c51d
74 changed files with 229 additions and 87 deletions

View File

@@ -1,7 +1,7 @@
//
// GUITestResult.cpp
//
// $Id: //poco/1.3/CppUnit/WinTestRunner/src/GUITestResult.cpp#1 $
// $Id: //poco/Main/CppUnit/WinTestRunner/src/GUITestResult.cpp#7 $
//
@@ -30,6 +30,15 @@ void GUITestResult::addFailure(Test *test, CppUnitException *e)
}
void GUITestResult::startTest(Test *test)
{
ExclusiveZone zone(_syncObject);
TestResult::startTest(test);
_runner->startTest(test);
}
void GUITestResult::endTest(Test *test)
{
ExclusiveZone zone(_syncObject);