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,20 +0,0 @@
#pragma once
#include <string>
#define YAML_ASSERT(cond) \
do { \
if (!(cond)) \
return " Assert failed: " #cond; \
} while (false)
namespace Test {
struct TEST {
TEST() : ok(false) {}
TEST(bool ok_) : ok(ok_) {}
TEST(const char *error_) : ok(false), error(error_) {}
bool ok;
std::string error;
};
}