mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-02-06 05:30:19 +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();
|
|
};
|
|
} |