*** empty log message ***
#ifndef _PAT_MAT_TEST_H #define _PAT_MAT_TEST_H #include <cppunit/TestCase.h> #include <cppunit/TestCaller.h> #include <cppunit/TestSuite.h> #include <cppunit/TestResult.h> #include <cppunit/TextTestRunner.h> #include <cppunit/extensions/HelperMacros.h> #include "PatMatch.h" #include <vector> #include <iostream> class PatMatchTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( PatMatchTest ); CPPUNIT_TEST( testShow ); CPPUNIT_TEST( testPixel ); CPPUNIT_TEST( testMatch ); CPPUNIT_TEST_SUITE_END(); private: BitmapFont *a; PatMatch *pat1,*pat2; public: void setUp(); void tearDown(); void testShow(); void testPixel(); void testMatch(); }; #endif /* _PAT_MAT_TEST_H */
ktanaka Powered by ViewCVS 1.0-dev |
ViewCVS and CVS Help |