Files
assimp/test/unit/utRemoveComments.h
aramis_acg bbaf838463 - update unit tests.
git-svn-id: https://assimp.svn.sourceforge.net/svnroot/assimp/trunk@1238 67173fc5-114c-0410-ac8e-9d2fd5bffc1f
2012-04-22 23:00:44 +00:00

35 lines
658 B
C++

#ifndef REMOVECOMMENTS_H
#define REMOVECOMMENTS_H
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
#include <RemoveComments.h>
using namespace std;
using namespace Assimp;
class RemoveCommentsTest : public CPPUNIT_NS :: TestFixture
{
CPPUNIT_TEST_SUITE (RemoveCommentsTest);
CPPUNIT_TEST (testSingleLineComments);
CPPUNIT_TEST (testMultiLineComments);
CPPUNIT_TEST_SUITE_END ();
public:
void setUp (void);
void tearDown (void);
protected:
void testSingleLineComments (void);
void testMultiLineComments (void);
private:
};
#endif