[wadalabfont-kit] / jis2prim / BitmapFontFileTest.cc  

Annotation of /jis2prim/BitmapFontFileTest.cc

Parent Directory | Revision Log

Revision: 1.1 - (view) (download) (as text)

1 : ktanaka 1.1 #include <strstream>
2 :     #include "BitmapFontFileTest.h"
3 :    
4 :     static char *showImage=
5 :     ".....................@@.\n"
6 :     "@@@@@@@@@@@@@@@@@@@@@@@@\n"
7 :     "........@@....@@........\n"
8 :     "........@@....@@........\n"
9 :     "........@@....@@........\n"
10 :     "........@@....@@........\n"
11 :     "..@.....@@....@@....@@..\n"
12 :     "..@@@@@@@@@@@@@@@@@@@@@.\n"
13 :     "..@@....@@....@@....@@..\n"
14 :     "..@@....@@....@@....@@..\n"
15 :     "..@@....@@....@@....@@..\n"
16 :     "..@@....@@....@@....@@..\n"
17 :     "..@@....@@....@@....@@..\n"
18 :     "..@@....@@....@@....@@..\n"
19 :     "..@@@@@@@@@@@@@@@@@@@@..\n"
20 :     "..@@....@@....@@....@@..\n"
21 :     "........@@....@@........\n"
22 :     "........@@....@@........\n"
23 :     "........@@....@@........\n"
24 :     "........@@....@@........\n"
25 :     "........@@....@@........\n"
26 :     "........@@....@@.....@@.\n"
27 :     "@@@@@@@@@@@@@@@@@@@@@@@@\n"
28 :     "........................\n";
29 :    
30 :     void BitmapFontFileTest::setUp(){
31 :     ff=new BitmapFontFile("jiskan24.bdf");
32 :     }
33 :     void BitmapFontFileTest::tearDown(){
34 :     delete ff;
35 :     }
36 :     void BitmapFontFileTest::testShow(){
37 :     std::ostrstream os;
38 :     os << ff->find(0x3021);
39 :     os.freeze();
40 :     CPPUNIT_ASSERT( os.pcount() == strlen(showImage));
41 :     CPPUNIT_ASSERT( !strncmp(os.str(),showImage,sizeof(showImage)));
42 :     }

ktanaka

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help