Skip to content
Snippets Groups Projects
Commit 5ad67d43 authored by Timon Habenicht's avatar Timon Habenicht
Browse files

renames method in Test

parent 2e9814b1
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ public:
virtual void addSimulation(std::shared_ptr< TestSimulation> sim, std::shared_ptr< SimulationInfo> simInfo) = 0;
virtual std::string getLogFileOutput() = 0;
virtual std::vector< bool> getPassedTests() = 0;
virtual void makeOutput() = 0;
virtual void makeConsoleOutput() = 0;
private:
......
......@@ -16,6 +16,11 @@ public:
void addSimulation(std::shared_ptr< TestSimulation> sim, std::shared_ptr< SimulationInfo> simInfo);
virtual void evaluate() = 0;
virtual std::string getLogFileOutput() = 0;
virtual std::vector< bool> getPassedTests() = 0;
virtual void makeConsoleOutput() = 0;
std::string getSimulationName();
protected:
TestImp();
......@@ -26,5 +31,8 @@ protected:
std::vector< std::shared_ptr< TestSimulation>> simulations;
std::vector< std::shared_ptr< SimulationResults>> simResults;
std::vector< std::shared_ptr< SimulationInfo>> simInfos;
std::string kernelName;
std::string simulationName;
};
#endif
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment