Rtos API example

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers basic.cpp Source File

basic.cpp

00001 #include "TestHarness.h"
00002 
00003 TEST_GROUP(FirstTestGroup)
00004 {
00005 };
00006 
00007 TEST(FirstTestGroup, FirstTest)
00008 {
00009     /* These checks are here to make sure assertions outside test runs don't crash */
00010     CHECK(true);
00011     LONGS_EQUAL(1, 1);
00012     STRCMP_EQUAL("mbed SDK!", "mbed SDK!");
00013 }