Private
Public Access
2
0

mraa: rename from maa to mraa

Signed-off-by: Thomas Ingleby <thomas.c.ingleby@intel.com>
This commit is contained in:
Thomas Ingleby
2014-06-24 17:24:54 +01:00
parent 79d0da4853
commit 6853997a92
74 changed files with 966 additions and 966 deletions

12
tests/mraa_test.cxx Normal file
View File

@@ -0,0 +1,12 @@
#include <mraa.h>
#include "gtest/gtest.h"
#include "version.h"
/* Careful, this test will only attempt to check the returned version is valid,
* it doesn't try to check the version is a release one.
*/
TEST (basic, mraa_get_version) {
char bar[64];
strcpy(bar, mraa_get_version());
ASSERT_STREQ(mraa_get_version(), gVERSION);
}