mirror of
https://github.com/dansanderson/c-autotools-template
synced 2025-03-19 17:11:14 -04:00
10 lines
228 B
C
10 lines
228 B
C
#include "executor/executor.h"
|
|
#include "mock_cfgfile.h"
|
|
#include "unity.h"
|
|
|
|
void test_Square_UsesExampleTwo(void) {
|
|
cfgfile_func_ExpectAndReturn(7, 49);
|
|
int result = executor_doit(7);
|
|
TEST_ASSERT_EQUAL_INT(49, result);
|
|
}
|