Skip to content
Snippets Groups Projects
RegExpEpsilonTest.h 407 B
Newer Older
  • Learn to ignore specific revisions
  • #ifndef REGEXPEPSILON_TEST_H_
    #define REGEXPEPSILON_TEST_H_
    
    
    #include <alib/string>
    
    
    #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_ */