Revision Log
*** empty log message ***
#ifndef _BITMAP_FONT_TEST_H
#define _BITMAP_FONT_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 "BitmapFont.h"
#include <iostream>
#include <algorithm>
class BitmapFontTest : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE( BitmapFontTest );
CPPUNIT_TEST( testGet );
CPPUNIT_TEST( testShow );
CPPUNIT_TEST( testPixel );
CPPUNIT_TEST_SUITE_END();
private:
BitmapFont *space, *a;
public:
void setUp();
void tearDown();
void testGet();
void testShow();
void testPixel();
};
#endif /* _BITMAP_FONT_TEST_H */
|
ktanaka Powered by ViewCVS 1.0-dev |
ViewCVS and CVS Help |