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

deletes TestResults

parent e745554e
No related branches found
No related tags found
No related merge requests found
#ifndef TEST_RESULTS_H
#define TEST_RESULTS_H
class TestResults
{
public:
virtual void evaluate() = 0;
virtual void makeFinalOutput() = 0;
virtual int getNumberOfPassedTests() = 0;
virtual int getNumberOfTests() = 0;
};
#endif
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