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