1234567891011121314151617 |
- #ifndef Test_H
- #define Test_H
-
- #include <iostream>
-
- class Test {
- public :
- Test( bool verbose );
- static bool assertEqual( std::string result, std::string expectation );
- static bool assertNotEqual( std::string result, std::string expectation );
-
- private :
- bool verbose;
-
- };
-
- #endif
|