EightBit/Z80/fusetest_Z80/FuseTests.h
Adrian.Conlon 982bccf0c9 First stab at adding Fuse Test runner.
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
2017-06-05 23:24:08 +01:00

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; }
};
}