#ifndef AUTOMATON_TEST_H_ #define AUTOMATON_TEST_H_ #include <cppunit/extensions/HelperMacros.h> class AutomatonTemplatesTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE ( AutomatonTemplatesTest ); CPPUNIT_TEST ( testDFAParser ); CPPUNIT_TEST_SUITE_END ( ); public: void setUp ( ); void tearDown ( ); void testDFAParser ( ); }; #endif // AUTOMATON_TEST_H_