Skip to content

Commit

Permalink
refs #6447 fixed erroneous test suite name
Browse files Browse the repository at this point in the history
  • Loading branch information
abuts committed Sep 23, 2013
1 parent 8f97c6f commit 3e3dfd7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/MDEvents/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ set ( TEST_FILES
MDBinTest.h
MDBoxBaseTest.h
MDBoxIteratorTest.h
MDBoxFlatTreeTest.h
MDBoxFlatTreeTest.h
MDBoxTest.h
MDBoxSaveableTest.h
MDDimensionStatsTest.h
Expand Down
8 changes: 4 additions & 4 deletions Code/Mantid/Framework/MDEvents/test/MDBoxFlatTreeTest.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
using namespace Mantid;
using namespace Mantid::MDEvents;

class MDEventFlatTreeTest :public CxxTest::TestSuite
class MDBoxFlatTreeTest :public CxxTest::TestSuite
{
private:

Expand All @@ -22,8 +22,8 @@ class MDEventFlatTreeTest :public CxxTest::TestSuite
public:
// This pair of boilerplate methods prevent the suite being created statically
// This means the constructor isn't called when running other tests
static MDEventFlatTreeTest *createSuite() { return new MDEventFlatTreeTest(); }
static void destroySuite( MDEventFlatTreeTest *suite ) { delete suite; }
static MDBoxFlatTreeTest *createSuite() { return new MDBoxFlatTreeTest (); }
static void destroySuite( MDBoxFlatTreeTest *suite ) { delete suite; }

void testFlatTreeOperations()
{
Expand Down Expand Up @@ -60,7 +60,7 @@ class MDEventFlatTreeTest :public CxxTest::TestSuite
testFile.remove();
}

MDEventFlatTreeTest()
MDBoxFlatTreeTest()
{
// load dependent DLL, which are used in MDEventsTestHelper (e.g. MDAlgorithms to create MD workspace)
// Mantid::API::FrameworkManager::Instance();
Expand Down

0 comments on commit 3e3dfd7

Please sign in to comment.