generated from TDD-Templates/cmake_cpputest_template
39 lines
454 B
C++
39 lines
454 B
C++
|
/*
|
||
|
* Author: username
|
||
|
* Date: todays_date
|
||
|
* filename: test_Radio.c
|
||
|
* description: module_purpose
|
||
|
*/
|
||
|
|
||
|
#include "CppUTest/CommandLineTestRunner.h"
|
||
|
|
||
|
extern "C"
|
||
|
{
|
||
|
#include "Radio.h"
|
||
|
}
|
||
|
|
||
|
TEST_GROUP(FirstTestGroup)
|
||
|
{
|
||
|
void setup()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
void teardown()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
};
|
||
|
|
||
|
TEST(FirstTestGroup, FirstTest)
|
||
|
{
|
||
|
FAIL("Fail me!");
|
||
|
}
|
||
|
|
||
|
TEST(FirstTestGroup, SecondTest)
|
||
|
{
|
||
|
STRCMP_EQUAL("hello", "world");
|
||
|
LONGS_EQUAL(1, 2);
|
||
|
CHECK(false);
|
||
|
}
|
||
|
|