mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-06 10:05:49 +00:00
982bccf0c9
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
27 lines
435 B
C++
27 lines
435 B
C++
#pragma once
|
|
|
|
#include <fstream>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include "FuseTestEvents.h"
|
|
#include "FuseRegisterState.h"
|
|
#include "FuseMemoryDatum.h"
|
|
|
|
namespace Fuse {
|
|
class ExpectedTestResult
|
|
{
|
|
public:
|
|
std::string description;
|
|
TestEvents events;
|
|
RegisterState registerState;
|
|
std::vector<MemoryDatum> memoryData;
|
|
|
|
bool finish;
|
|
|
|
ExpectedTestResult()
|
|
: finish(false) {}
|
|
|
|
void read(std::ifstream& file);
|
|
};
|
|
} |