mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-04 12:05:03 +00:00
982bccf0c9
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
21 lines
325 B
C++
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; }
|
|
};
|
|
}
|