summaryrefslogtreecommitdiff
path: root/tool/mbed/mbed-sdk/libraries/tests/utest/basic/basic.cpp
blob: 92d77cbc07f2885d74086beccfbe33181fb0019c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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!");
}