]> git.gir.st - tmk_keyboard.git/blob - tmk_core/tool/mbed/mbed-sdk/libraries/tests/utest/basic/basic.cpp
Chibios: Revert common.mk change (fix AVR linking problem).
[tmk_keyboard.git] / tmk_core / tool / mbed / mbed-sdk / libraries / tests / utest / basic / basic.cpp
1 #include "TestHarness.h"
2
3 TEST_GROUP(FirstTestGroup)
4 {
5 };
6
7 TEST(FirstTestGroup, FirstTest)
8 {
9 /* These checks are here to make sure assertions outside test runs don't crash */
10 CHECK(true);
11 LONGS_EQUAL(1, 1);
12 STRCMP_EQUAL("mbed SDK!", "mbed SDK!");
13 }
Imprint / Impressum