Remove trailing whitespace

This commit is contained in:
j883376
2013-05-06 13:07:41 -04:00
parent 7a93966158
commit ffcff4aea1
548 changed files with 16397 additions and 16398 deletions
+7 -7
View File
@@ -53,15 +53,15 @@ namespace Test
/// Terse output mode, which only shows the number of correct tests.
///
Terse,
/// Verbose output mode, which also shows extended assert
/// information for each test that failed.
///
Verbose
Verbose
};
TextOutput(Mode mode, std::ostream& stream = std::cout);
virtual void finished(int tests, const Time& time);
virtual void suite_start(int tests, const std::string& name);
virtual void suite_end(int tests, const std::string& name,
@@ -69,10 +69,10 @@ namespace Test
virtual void test_end(const std::string& name, bool ok,
const Time& time);
virtual void assertment(const Source& s);
private:
typedef std::list<Source> ErrorList;
Mode _mode;
std::ostream& _stream;
ErrorList _suite_error_list;
@@ -84,5 +84,5 @@ namespace Test
};
} // namespace Test
#endif // #ifndef CPPTEST_TEXTOUTPUT_H