From fc23f6680c4d6ab9fcfaaad9811f2b55292810f0 Mon Sep 17 00:00:00 2001 From: Alex Buts Date: Thu, 13 Nov 2014 13:36:56 +0000 Subject: [PATCH] refs #10551 This is the group I think used for tests most intensively --- .../Algorithms/inc/MantidAlgorithms/CheckWorkspacesMatch.h | 2 +- .../Framework/Algorithms/inc/MantidAlgorithms/CreateWorkspace.h | 2 +- Code/Mantid/Framework/Algorithms/src/CreateSampleWorkspace.cpp | 2 +- .../Framework/DataHandling/src/CreateSimulationWorkspace.cpp | 2 +- Code/Mantid/Framework/MDAlgorithms/src/CompareMDWorkspaces.cpp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/CheckWorkspacesMatch.h b/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/CheckWorkspacesMatch.h index dd3f2a1ed243..ba57238b1c9b 100644 --- a/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/CheckWorkspacesMatch.h +++ b/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/CheckWorkspacesMatch.h @@ -73,7 +73,7 @@ class DLLExport CheckWorkspacesMatch : public API::Algorithm /// Algorithm's version virtual int version() const { return (1); } /// Algorithm's category for identification - virtual const std::string category() const { return "Utility\\Workspaces"; } + virtual const std::string category() const { return "Utility\\TestAlgorithm"; } /** Return the string output when comparison is successful. */ diff --git a/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/CreateWorkspace.h b/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/CreateWorkspace.h index 3c53ca2d1550..b08e083673e7 100644 --- a/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/CreateWorkspace.h +++ b/Code/Mantid/Framework/Algorithms/inc/MantidAlgorithms/CreateWorkspace.h @@ -54,7 +54,7 @@ class DLLExport CreateWorkspace : public API::Algorithm ///Summary of algorithms purpose virtual const std::string summary() const {return "This algorithm constructs a MatrixWorkspace when passed a vector for each of the X, Y, and E data values.";} - virtual const std::string category() const { return "Utility\\Workspaces"; } ///< @return the algorithms category + virtual const std::string category() const { return "Utility\\TestAlgorithm"; } ///< @return the algorithms category virtual int version() const { return (1); } ///< @return version number of algorithm private: diff --git a/Code/Mantid/Framework/Algorithms/src/CreateSampleWorkspace.cpp b/Code/Mantid/Framework/Algorithms/src/CreateSampleWorkspace.cpp index 6eab55e4df2e..4e5ce50e6944 100644 --- a/Code/Mantid/Framework/Algorithms/src/CreateSampleWorkspace.cpp +++ b/Code/Mantid/Framework/Algorithms/src/CreateSampleWorkspace.cpp @@ -60,7 +60,7 @@ namespace Algorithms int CreateSampleWorkspace::version() const { return 1;}; /// Algorithm's category for identification. @see Algorithm::category - const std::string CreateSampleWorkspace::category() const { return "Utility\\Workspaces";} + const std::string CreateSampleWorkspace::category() const { return "Utility\\TestAlgorithm";} //---------------------------------------------------------------------------------------------- /** Initialize the algorithm's properties. diff --git a/Code/Mantid/Framework/DataHandling/src/CreateSimulationWorkspace.cpp b/Code/Mantid/Framework/DataHandling/src/CreateSimulationWorkspace.cpp index 8cf9af2dd2e3..1e62925a0925 100644 --- a/Code/Mantid/Framework/DataHandling/src/CreateSimulationWorkspace.cpp +++ b/Code/Mantid/Framework/DataHandling/src/CreateSimulationWorkspace.cpp @@ -33,7 +33,7 @@ namespace Mantid int CreateSimulationWorkspace::version() const { return 1;}; /// Algorithm's category for identification. @see Algorithm::category - const std::string CreateSimulationWorkspace::category() const { return "Quantification";} + const std::string CreateSimulationWorkspace::category() const { return "Utility\\TestAlgorithm";} //---------------------------------------------------------------------------------------------- diff --git a/Code/Mantid/Framework/MDAlgorithms/src/CompareMDWorkspaces.cpp b/Code/Mantid/Framework/MDAlgorithms/src/CompareMDWorkspaces.cpp index 949e16e0408b..0b5c81fc85f0 100644 --- a/Code/Mantid/Framework/MDAlgorithms/src/CompareMDWorkspaces.cpp +++ b/Code/Mantid/Framework/MDAlgorithms/src/CompareMDWorkspaces.cpp @@ -62,7 +62,7 @@ namespace Mantid int CompareMDWorkspaces::version() const { return 1;}; /// Algorithm's category for identification. @see Algorithm::category - const std::string CompareMDWorkspaces::category() const { return "MDAlgorithms";} + const std::string CompareMDWorkspaces::category() const { return "Utility\\TestAlgorithm";} //----------------------------------------------------------------------------------------------