1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-18 16:32:32 +02:00
openrw/tests/main.cpp
2014-05-29 09:34:59 +01:00

9 lines
238 B
C++

#define BOOST_TEST_MODULE gtfw
#include <boost/test/included/unit_test.hpp>
#include "test_globals.hpp"
std::ostream& operator<<( std::ostream& stream, const glm::vec3& v ) {
stream << v.x << " " << v.y << " " << v.z;
return stream;
}