EightBit/LR35902/fusetest_LR35902/FuseTests.h
Adrian.Conlon 78e5451f93 Remove remaining Z80 -> LR35902 test translation code.
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
2017-08-12 14:29:12 +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; }
};
}