mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-05 03:07:44 +00:00
982bccf0c9
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
22 lines
388 B
C++
22 lines
388 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);
|
|
|
|
public:
|
|
void read(std::string path);
|
|
const std::map<std::string, ExpectedTestResult>& container() const {
|
|
return results;
|
|
}
|
|
};
|
|
} |