Newer
Older
#ifndef REGEXPEPSILON_TEST_H_
#define REGEXPEPSILON_TEST_H_
#include <cppunit/extensions/HelperMacros.h>
class RegExpEpsilonTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE( RegExpEpsilonTest );
CPPUNIT_TEST( testRegExpEpsilon );
CPPUNIT_TEST_SUITE_END();
public:
void setUp();
void tearDown();
void testRegExpEpsilon();
};
#endif /* REGEXPEPSILON_TEST_H_ */