#include "testbench.hpp" #include void TestBench::startTest(const std::string &test_name) { incrementer++; Test test(test_name, false); tests_.push_back(test); } void TestBench::endTest(bool pass) { incrementer--; if(incrementer!=0) { throw std::runtime_error("Start and End don't match"); } if(pass) { passed++; } else { failed++; } tests_[passed+failed-1].passed=pass; } void TestBench::printResults() { printf("Results:\n"); printf("+------------+---------+\n"); printf("| Test Name | Result |\n"); printf("+------------+---------+\n"); for(auto test : tests_) { std::string result; if(test.passed) result="PASS"; else result="FAIL"; char test_name[10]; for(std::size_t i=0; i<10; ++i) { if(i