Skip to content

Commit

Permalink
refs #10551 This is the group I think used for tests most intensively
Browse files Browse the repository at this point in the history
  • Loading branch information
abuts committed Nov 13, 2014
1 parent 7705d27 commit fc23f66
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Expand Up @@ -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.
*/
Expand Down
Expand Up @@ -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:
Expand Down
Expand Up @@ -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.
Expand Down
Expand Up @@ -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";}

//----------------------------------------------------------------------------------------------

Expand Down
Expand Up @@ -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";}

//----------------------------------------------------------------------------------------------

Expand Down

0 comments on commit fc23f66

Please sign in to comment.