Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

utRemoveComments.h 624 B

12345678910111213141516171819202122232425262728293031323334
  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