mirror of
https://github.com/dansanderson/c-autotools-template
synced 2025-03-19 17:11:14 -04:00
11 lines
207 B
C
11 lines
207 B
C
#include "cfgfile/cfgfile.h"
|
|
#include "unity.h"
|
|
|
|
void setUp(void) {}
|
|
|
|
void tearDown(void) {}
|
|
|
|
void test_cfgfileFunc_ReturnsZero(void) {
|
|
TEST_ASSERT_EQUAL_MESSAGE(0, cfgfile_func(999), "func returns 0");
|
|
}
|