1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
tv44led_example/tmk_core/tool/mbed/mbed-sdk/libraries/tests/utest/basic/basic.cpp
di0ib 87e7029039 Upload
Initial upload
2016-07-08 09:13:28 -10:00

13 lines
264 B
C++

#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!");
}