Convert core parser tests to gtest

This commit is contained in:
Jesse Beder
2014-03-23 14:47:30 -05:00
parent dfa32c7f44
commit 1327ce6d73
4 changed files with 89 additions and 101 deletions

View File

@@ -4,7 +4,6 @@
#include <vector>
#include "emittertests.h"
#include "parsertests.h"
#include "tests.h"
namespace Test {
@@ -13,9 +12,6 @@ void RunAll() {
if (!RunEmitterTests())
passed = false;
if (!RunParserTests())
passed = false;
if (passed)
std::cout << "All tests passed!\n";
}