mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-05 03:07:44 +00:00
21 lines
325 B
C
21 lines
325 B
C
|
#pragma once
|
||
|
|
||
|
#include <map>
|
||
|
#include <string>
|
||
|
#include <fstream>
|
||
|
|
||
|
#include "FuseTest.h"
|
||
|
|
||
|
namespace Fuse {
|
||
|
class Tests {
|
||
|
private:
|
||
|
std::map<std::string, Test> tests;
|
||
|
|
||
|
void read(std::ifstream& file);
|
||
|
|
||
|
public:
|
||
|
void read(std::string path);
|
||
|
const std::map<std::string, Test>& container() const { return tests; }
|
||
|
};
|
||
|
}
|