Skip to content
Snippets Groups Projects
Commit 68d51b87 authored by David Rosca's avatar David Rosca
Browse files

GraphTest: No need for empty setUp and tearDown methods

parent 0def0bc0
No related branches found
No related tags found
No related merge requests found
......@@ -10,14 +10,6 @@
 
CPPUNIT_TEST_SUITE_REGISTRATION(GraphTest);
 
void GraphTest::setUp()
{
}
void GraphTest::tearDown()
{
}
void GraphTest::testCopyConstruct()
{
testCopyConstruct_impl(graph::REPRESENTATION::ADJACENCY_LIST);
......
......@@ -22,9 +22,6 @@ class GraphTest : public CppUnit::TestFixture
CPPUNIT_TEST_SUITE_END();
 
public:
void setUp();
void tearDown();
void testCopyConstruct();
void testEqual();
void testXMLParser();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment