diff --git a/Code/Mantid/Framework/PythonInterface/test/python/mantid/api/CMakeLists.txt b/Code/Mantid/Framework/PythonInterface/test/python/mantid/api/CMakeLists.txt index 0c6113c925d996ce744e70a2fafbfb75f7c9abf3..57b1f1b8c6bf6608895199784738317b1bf253a6 100644 --- a/Code/Mantid/Framework/PythonInterface/test/python/mantid/api/CMakeLists.txt +++ b/Code/Mantid/Framework/PythonInterface/test/python/mantid/api/CMakeLists.txt @@ -10,7 +10,6 @@ set ( TEST_PY_FILES AnalysisDataServiceTest.py AxisTest.py CatalogManagerTest.py - CutMDTest.py DataProcessorAlgorithmTest.py DeprecatedAlgorithmCheckerTest.py ExperimentInfoTest.py diff --git a/Code/Mantid/Framework/PythonInterface/test/python/mantid/api/CutMDTest.py b/Code/Mantid/Framework/PythonInterface/test/python/mantid/api/CutMDTest.py deleted file mode 100644 index 29e42cb3479fbfba53fc7fffd2deccd20c91c1f2..0000000000000000000000000000000000000000 --- a/Code/Mantid/Framework/PythonInterface/test/python/mantid/api/CutMDTest.py +++ /dev/null @@ -1,26 +0,0 @@ -import unittest -import testhelpers -import numpy as np -from mantid.simpleapi import * -from mantid.api import IMDHistoWorkspace, IMDEventWorkspace - - -class CutMDTest(unittest.TestCase): - - - def setUp(self): - # Create a workspace - data_ws = CreateMDWorkspace(Dimensions=3, Extents=[-10,10,-10,10,-10,10], Names="A,B,C", Units="U,U,U") - # Mark the workspace as being in HKL - SetSpecialCoordinates(InputWorkspace=data_ws, SpecialCoordinates='HKL') - # Set the UB - SetUB(Workspace=data_ws, a = 1, b = 1, c = 1, alpha =90, beta=90, gamma = 90) - # Add some data to the workspace - FakeMDEventData(InputWorkspace=data_ws, PeakParams=[10000,0,0,0,1]) - self.__in_md = data_ws - - def tearDown(self): - DeleteWorkspace(self.__in_md ) - -if __name__ == '__main__': - unittest.main()