您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

35 行
624 B

  1. #ifndef REMOVECOMMENTS_H
  2. #define REMOVECOMMENTS_H
  3. #include <cppunit/TestFixture.h>
  4. #include <cppunit/extensions/HelperMacros.h>
  5. #include <RemoveComments.h>
  6. using namespace std;
  7. using namespace Assimp;
  8. class RemoveCommentsTest : public CPPUNIT_NS :: TestFixture
  9. {
  10. CPPUNIT_TEST_SUITE (RemoveCommentsTest);
  11. CPPUNIT_TEST (testSingleLineComments);
  12. CPPUNIT_TEST (testMultiLineComments);
  13. CPPUNIT_TEST_SUITE_END ();
  14. public:
  15. void setUp (void);
  16. void tearDown (void);
  17. protected:
  18. void testSingleLineComments (void);
  19. void testMultiLineComments (void);
  20. private:
  21. };
  22. #endif