EightBit/Z80/fusetest_Z80/FuseTestSuite.cpp
Adrian.Conlon 982bccf0c9 First stab at adding Fuse Test runner.
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
2017-06-05 23:24:08 +01:00

31 lines
792 B
C++

#include "stdafx.h"
#include "FuseTestSuite.h"
#include "FuseTestRunner.h"
Fuse::TestSuite::TestSuite(std::string path) {
m_tests.read(path + ".in");
m_results.read(path + ".expected");
}
void Fuse::TestSuite::run() {
auto failedCount = 0;
auto unimplementedCount = 0;
for (auto test : m_tests.container()) {
auto key = test.first;
std::cout << "** Checking: " << key << std::endl;
auto input = test.second;
auto result = m_results.container().find(key)->second;
Fuse::TestRunner runner(input, result);
runner.run();
if (runner.failed())
++failedCount;
if (runner.unimplemented())
++unimplementedCount;
}
std::cout << "+++ Failed test count: " << failedCount << std::endl;
std::cout << "+++ Unimplemented test count: " << unimplementedCount << std::endl;
}