f610389724b9665ded6fba38d3712019368720dc
[contrib/mraa.git] / tests / maa_test.cxx
1 #include <maa.h>
2 #include "gtest/gtest.h"
3 #include "version.h"
4
5 /* Careful, this test will only attempt to check the returned version is valid,
6  * it doesn't try to check the version is a release one.
7  */
8 TEST (basic, maa_get_version) {
9     char bar[64];
10     strcpy(bar, maa_get_version());
11     ASSERT_STREQ(maa_get_version(), gVERSION);
12 }