]> git.gir.st - tmk_keyboard.git/blob - tool/mbed/mbed-sdk/libraries/tests/utest/basic/basic.cpp
Squashed 'tmk_core/' changes from 7967731..b9e0ea0
[tmk_keyboard.git] / 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