mbed-os
Fork of mbed-os by
Diff: features/unsupported/tests/utest/basic/basic.cpp
- Revision:
- 0:f269e3021894
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/features/unsupported/tests/utest/basic/basic.cpp Sun Oct 23 15:10:02 2016 +0000 @@ -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