New test program based on gtest.

This commit is contained in:
King_DuckZ 2015-07-23 23:10:03 +02:00
parent 5e6c537a2d
commit b7c7d77dac
4 changed files with 203 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#include "sample_vectors.hpp"
#include <gtest/gtest.h>
TEST(vwr, conversion) {
using namespace vwr;
{
svec1 s(10.0f);
EXPECT_EQ(s.x(), 10.0f);
}
}