No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Test.h 292B

1234567891011121314151617
  1. #ifndef Test_H
  2. #define Test_H
  3. #include <iostream>
  4. class Test {
  5. public :
  6. Test( bool verbose );
  7. static bool assertEqual( std::string result, std::string expectation );
  8. static bool assertNotEqual( std::string result, std::string expectation );
  9. private :
  10. bool verbose;
  11. };
  12. #endif