csci3081/testing/tests.h

12 lines
309 B
C
Raw Normal View History

2018-01-29 23:24:20 +00:00
#ifndef TESTS_TESTS_H_
#define TESTS_TESTS_H_
#include <string>
// These are my "homegrown" version of Google test asserts
void ExpectEqual(std::string test, int expect, int got);
void ExpectEqual(std::string test, float expect, float got);
void ExpectEqual(std::string test, bool expect, int got);
#endif