Converted gen emitter tests to gtest, and removed the old testing framework from core

This commit is contained in:
Jesse Beder
2014-03-23 16:35:26 -05:00
parent ebf14ec83a
commit ad2953f660
10 changed files with 9840 additions and 10669 deletions

View File

@@ -1,18 +0,0 @@
#include <fstream>
#include <iostream>
#include <sstream>
#include <vector>
#include "emittertests.h"
#include "tests.h"
namespace Test {
void RunAll() {
bool passed = true;
if (!RunEmitterTests())
passed = false;
if (passed)
std::cout << "All tests passed!\n";
}
}