csci3081/testing/tests.h
Michael Zhang 1ba4536588
f
2018-01-29 17:24:20 -06:00

11 lines
309 B
C++

#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