mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
no newline after output flags
This commit is contained in:
parent
e14a24c4ce
commit
a697193623
1 changed files with 3 additions and 4 deletions
|
@ -13,22 +13,21 @@ void TextTestResult::addError (Test *test, CppUnitException *e)
|
|||
{
|
||||
TestResult::addError (test, e);
|
||||
if(verbose_)
|
||||
cerr << "E" << endl;
|
||||
|
||||
cerr << "E";
|
||||
}
|
||||
|
||||
void TextTestResult::addFailure (Test *test, CppUnitException *e)
|
||||
{
|
||||
TestResult::addFailure (test, e);
|
||||
if(verbose_)
|
||||
cerr << "F" << endl;
|
||||
cerr << "F";
|
||||
}
|
||||
|
||||
void TextTestResult::addSkip (Test *test, CppUnitException *e)
|
||||
{
|
||||
TestResult::addSkip (test, e);
|
||||
if(verbose_)
|
||||
cerr << "S" << endl;
|
||||
cerr << "S";
|
||||
}
|
||||
|
||||
void TextTestResult::startTest (Test *test)
|
||||
|
|
Loading…
Reference in a new issue