mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-05 03:07:44 +00:00
982bccf0c9
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
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();
|
|
};
|
|
} |