1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-15 15:02:34 +02:00
openrw/tests/main.cpp

9 lines
221 B
C++
Raw Normal View History

#define BOOST_TEST_MODULE openrw
#include <boost/test/unit_test.hpp>
#include "test_Globals.hpp"
2016-09-09 22:13:22 +02:00
std::ostream& operator<<(std::ostream& stream, const glm::vec3& v) {
2019-05-24 00:38:35 +02:00
stream << glm::to_string(v);
2016-09-09 22:13:22 +02:00
return stream;
}