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

adds new Test class

parent 799a7e2f
No related branches found
No related tags found
No related merge requests found
#ifndef SIMULATION_OBSERVER_H
#define SIMULATION_OBSERVER_H
class SimulationObserver
{
public:
virtual void update() = 0;
private:
};
#endif
\ No newline at end of file
#ifndef TEST_H
#define TEST_H
#include "SimulationObserver.h"
#include <memory>
#include <vector>
#include <string>
class TestSimulation;
class SimulationInfo;
class Test : public SimulationObserver
{
public:
virtual void update() = 0;
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;
private:
};
#endif
\ No newline at end of file
#include "TestImp.h"
#include "Utilities\TestSimulation\TestSimulation.h"
void TestImp::update()
{
for (int i = 0; i < simulations.size(); i++)
{
if(simulationRun.at(i) == false)
{
if (simulations.at(i)->getSimulationRun())
{
simulationRun.at(i) = true;
simResults.at(i) = simulations.at(i)->getSimulationResults();
}
}
}
if (CheckAllSimulationRun())
evaluate();
}
void TestImp::addSimulation(std::shared_ptr<TestSimulation> sim, std::shared_ptr< SimulationInfo> simInfo)
{
simulations.push_back(sim);
simInfos.push_back(simInfo);
simulationRun.push_back(false);
simResults.resize(simResults.size() + 1);
}
TestImp::TestImp()
{
simulationRun.resize(0);
simulations.resize(0);
simResults.resize(0);
simInfos.resize(0);
}
bool TestImp::CheckAllSimulationRun()
{
for(int i=0; i< simulationRun.size(); i++)
if(simulationRun.at(i)==false)
return false;
return true;
}
#ifndef TEST_IMP_H
#define TEST_IMP_H
#include "Utilities\Test\Test.h"
#include <vector>
class TestSimulation;
class SimulationResults;
class SimulationInfo;
class TestImp : public Test
{
public:
void update();
void addSimulation(std::shared_ptr< TestSimulation> sim, std::shared_ptr< SimulationInfo> simInfo);
virtual void evaluate() = 0;
protected:
TestImp();
bool CheckAllSimulationRun();
std::vector< bool> simulationRun;
std::vector< std::shared_ptr< TestSimulation>> simulations;
std::vector< std::shared_ptr< SimulationResults>> simResults;
std::vector< std::shared_ptr< SimulationInfo>> simInfos;
};
#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