mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2025-01-11 17:29:57 +00:00
42b1b7dc53
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
24 lines
455 B
C++
24 lines
455 B
C++
#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);
|
|
void write(std::ofstream& file);
|
|
|
|
public:
|
|
void read(std::string path);
|
|
void write(std::string path);
|
|
const std::map<std::string, ExpectedTestResult>& container() const {
|
|
return results;
|
|
}
|
|
};
|
|
} |