mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-17 04:09:14 +00:00
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);
|
||
|
};
|
||
|
}
|