hce-node application  1.4.3
HCE Hierarchical Cluster Engine node application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
MecabWordTypeTest.hpp
Go to the documentation of this file.
1 #include <cppunit/TestCase.h>
2 #include "MecabPlugin.hpp"
3 
4 
5 #ifndef MECAB_PLUGIN_WORD_TYPE_TEST
6 #define MECAB_PLUGIN_WORD_TYPE_TEST
7 
8 
9 namespace refine_test {
10 
11 
12 class MecabWordTypeTest : public CppUnit::TestFixture {
13 public:
14  void setUp();
15  void tearDown();
16 public:
17  void testWordTypesCount();
18  void testWordTypeNumber();
19  void testWordTypeWord();
20  void testWordTypeDelimiter();
22  void testWordTypeUndefined();
23  void testTokensCount();
24 private:
25  HCE::component::MecabPlugin _mecabPlugin;
27 };
28 
29 
30 }
31 
32 #endif