#ifndef REGEXPINTEGRAL_TEST_H_ #define REGEXPINTEGRAL_TEST_H_ #include <alib/string> #include <cppunit/extensions/HelperMacros.h> class RegExpIntegralTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( RegExpIntegralTest ); CPPUNIT_TEST( testRegExpIntegral ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void testRegExpIntegral(); void ExecSingleTest(std::string, std::string, std::string); }; #endif /* REGEXPINTEGRAL_TEST_H_ */