Started a new solution from scratch.

Added Google test
This commit is contained in:
Benoit Blanchon
2014-09-24 11:41:19 +02:00
parent 4cfb0ab84d
commit 60a5d72367
184 changed files with 141236 additions and 24 deletions

6
tests/DummyTests.cpp Normal file
View File

@ -0,0 +1,6 @@
#include <gtest/gtest.h>
TEST(DummyTests, EXPECT_TRUE)
{
EXPECT_TRUE(true);
}