33 lines
361 B
C++
33 lines
361 B
C++
/*
|
|
* Author: username
|
|
* Date: todays_date
|
|
* filename: test_timer.c
|
|
* description: module_purpose
|
|
*/
|
|
|
|
#include "CppUTest/CommandLineTestRunner.h"
|
|
|
|
extern "C"
|
|
{
|
|
#include "MockRegEdit.h"
|
|
#include "timer.h"
|
|
}
|
|
|
|
TEST_GROUP(test_timer)
|
|
{
|
|
void setup()
|
|
{
|
|
|
|
}
|
|
void teardown()
|
|
{
|
|
|
|
}
|
|
};
|
|
|
|
|
|
TEST(test_timer, SetupTimerMocks)
|
|
{
|
|
CHECK(true);
|
|
}
|