aboutsummaryrefslogtreecommitdiffstats
path: root/tmk_core/tool/mbed/mbed-sdk/libraries/tests/utest/basic/basic.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/tool/mbed/mbed-sdk/libraries/tests/utest/basic/basic.cpp')
-rw-r--r--tmk_core/tool/mbed/mbed-sdk/libraries/tests/utest/basic/basic.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/tmk_core/tool/mbed/mbed-sdk/libraries/tests/utest/basic/basic.cpp b/tmk_core/tool/mbed/mbed-sdk/libraries/tests/utest/basic/basic.cpp
new file mode 100644
index 000000000..92d77cbc0
--- /dev/null
+++ b/tmk_core/tool/mbed/mbed-sdk/libraries/tests/utest/basic/basic.cpp
@@ -0,0 +1,13 @@
+#include "TestHarness.h"
+
+TEST_GROUP(FirstTestGroup)
+{
+};
+
+TEST(FirstTestGroup, FirstTest)
+{
+ /* These checks are here to make sure assertions outside test runs don't crash */
+ CHECK(true);
+ LONGS_EQUAL(1, 1);
+ STRCMP_EQUAL("mbed SDK!", "mbed SDK!");
+} \ No newline at end of file