From 68d51b876e5ffae51a13831398ae1d3f2344c7f1 Mon Sep 17 00:00:00 2001
From: David Rosca <roscadav@fit.cvut.cz>
Date: Thu, 5 Mar 2015 12:17:27 +0100
Subject: [PATCH] GraphTest: No need for empty setUp and tearDown methods

---
 alib2data/test-src/graph/GraphTest.cpp | 8 --------
 alib2data/test-src/graph/GraphTest.h   | 3 ---
 2 files changed, 11 deletions(-)

diff --git a/alib2data/test-src/graph/GraphTest.cpp b/alib2data/test-src/graph/GraphTest.cpp
index ec93adfd7e..f9f33a3e10 100644
--- a/alib2data/test-src/graph/GraphTest.cpp
+++ b/alib2data/test-src/graph/GraphTest.cpp
@@ -10,14 +10,6 @@
 
 CPPUNIT_TEST_SUITE_REGISTRATION(GraphTest);
 
-void GraphTest::setUp()
-{
-}
-
-void GraphTest::tearDown()
-{
-}
-
 void GraphTest::testCopyConstruct()
 {
 	testCopyConstruct_impl(graph::REPRESENTATION::ADJACENCY_LIST);
diff --git a/alib2data/test-src/graph/GraphTest.h b/alib2data/test-src/graph/GraphTest.h
index be8375cf8d..63ed55a4c3 100644
--- a/alib2data/test-src/graph/GraphTest.h
+++ b/alib2data/test-src/graph/GraphTest.h
@@ -22,9 +22,6 @@ class GraphTest : public CppUnit::TestFixture
 	CPPUNIT_TEST_SUITE_END();
 
 public:
-	void setUp();
-	void tearDown();
-
 	void testCopyConstruct();
 	void testEqual();
 	void testXMLParser();
-- 
GitLab