mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-16 13:04:48 +00:00
19 lines
251 B
C
19 lines
251 B
C
|
#pragma once
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include "FuseTests.h"
|
||
|
#include "FuseExpectedTestResults.h"
|
||
|
|
||
|
namespace Fuse {
|
||
|
class TestSuite {
|
||
|
private:
|
||
|
Tests m_tests;
|
||
|
ExpectedTestResults m_results;
|
||
|
|
||
|
public:
|
||
|
TestSuite(std::string path);
|
||
|
|
||
|
void run();
|
||
|
};
|
||
|
}
|