OSDN Git Service

c938bf78a3509038c545d7fcc68289c3c59a3525
[kita/kita.git] / kita / src / libkita / tests / boardtest.h
1 /***************************************************************************
2  *   Copyright (C) 2003 by Hideki Ikemoto                                  *
3  *   ikemo@wakaba.jp                                                       *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) any later version.                                   *
9  ***************************************************************************/
10 #ifndef BOARDTEST_H
11 #define BOARDTEST_H
12
13 #include <cppunit/extensions/HelperMacros.h>
14 #include <../board.h>
15
16 /**
17 @author Hideki Ikemoto
18 */
19 class BoardTest : public CppUnit::TestFixture {
20     CPPUNIT_TEST_SUITE( BoardTest );
21     CPPUNIT_TEST( testID );
22     CPPUNIT_TEST( testStaticName );
23     CPPUNIT_TEST( testReplace );
24     CPPUNIT_TEST_SUITE_END();
25
26 public:
27     void setUp();
28     void tearDown();
29
30     void testID();
31     void testStaticName();
32     void testReplace();
33 };
34
35 #endif