13 lines
264 B
C++
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!");
|
||
|
}
|