Private
Public Access
2
0

tests: add initial unit test env

This commit is contained in:
Brendan Le Foll
2014-04-10 11:07:05 +01:00
parent b7d42d470f
commit 8b715745fc
4 changed files with 32 additions and 1 deletions

8
tests/maa_test.cxx Normal file
View File

@@ -0,0 +1,8 @@
#include "maa.h"
#include "gtest/gtest.h"
using namespace maa;
TEST (basic, GetVersion) {
ASSERT_EQ(get_version(), 1);
}