hce-node application  1.4.3
HCE Hierarchical Cluster Engine node application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
BoostTokenizerTest.hpp
Go to the documentation of this file.
1 #include <cppunit/TestCase.h>
2 #include "BoostPlugin.hpp"
3 
4 
5 #ifndef BOOST_TOKENIZER_TEST
6 #define BOOST_TOKENIZER_TEST
7 
8 
9 namespace refine_test {
10 
11 
12 class BoostTokenizerTest : public CppUnit::TestFixture {
13 public:
14  void setUp();
15  void tearDown();
16 public:
17  void testTokensCount();
18  void testTokensValues();
19  void testTokensOffsets();
20  void testTokensLenghts();
21  void testCustomDelimiters();
22 public:
23  static void setArguments(const std::string& args) {_args = args;}
24  static std::string _args;
25 private:
26  HCE::component::BoostPlugin _boostPlugin;
28 };
29 
30 
31 }
32 
33 #endif