openrw/tests/main.cpp

9 lines
235 B
C++
Raw Normal View History

#define BOOST_TEST_MODULE openrw
#include <boost/test/unit_test.hpp>
#include "test_Globals.hpp"
2016-09-09 21:13:22 +01:00
std::ostream& operator<<(std::ostream& stream, const glm::vec3& v) {
stream << v.x << " " << v.y << " " << v.z;
return stream;
}