OSDN Git Service

reformat
[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 {
21     CPPUNIT_TEST_SUITE( BoardTest );
22     CPPUNIT_TEST( testID );
23     CPPUNIT_TEST( testStaticName );
24     CPPUNIT_TEST( testReplace );
25     CPPUNIT_TEST_SUITE_END();
26
27 public:
28     void setUp();
29     void tearDown();
30
31     void testID();
32     void testStaticName();
33     void testReplace();
34 };
35
36 #endif