EightBit/LR35902/fusetest_LR35902/FuseExpectedTestResults.h

22 lines
388 B
C
Raw Normal View History

#pragma once
#include <map>
#include <string>
#include <fstream>
#include "FuseExpectedTestResult.h"
namespace Fuse {
class ExpectedTestResults {
private:
std::map<std::string, ExpectedTestResult> results;
void read(std::ifstream& file);
public:
void read(std::string path);
const std::map<std::string, ExpectedTestResult>& container() const {
return results;
}
};
}