core/tests: Remove test.h

This file is no longer needed now that everything has been converted to
C.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
This commit is contained in:
Anna Schumaker 2015-12-21 10:15:48 -05:00
parent d81ef77fb3
commit eba243a22a
1 changed files with 0 additions and 25 deletions

View File

@ -1,25 +0,0 @@
/*
* Copyright 2015 (c) Anna Schumaker.
*/
#ifndef TESTS_CORE_TESTS_H
#define TESTS_CORE_TESTS_H
extern "C" {
#include <tests/test.h>
}
#include <sstream>
#undef tostring
template <class T>
static inline char *tostring(T s)
{
std::stringstream ss;
ss << s;
return strdup(ss.str().c_str());
}
#endif /* TESTS_CORE_TESTS_H */