/* * Graph6ReaderUnitTest.hpp * * Created on: Oct 17, 2011 * Author: heber */ #ifndef GRAPH6READERUNITTEST_HPP_ #define GRAPH6READERUNITTEST_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #include "Graph/Graph6Reader.hpp" class Graph6ReaderTest : public CppUnit::TestFixture { CPPUNIT_TEST_SUITE( Graph6ReaderTest ); CPPUNIT_TEST ( operatorTest ); CPPUNIT_TEST_SUITE_END(); public: void setUp(); void tearDown(); void operatorTest(); private: Graph6Reader reader; }; #endif /* GRAPH6READERUNITTEST_HPP_ */