1
0
mirror of https://github.com/dansanderson/c-autotools-template synced 2025-03-20 17:21:14 -04:00
c-autotools-template/tests/testmod/test_testmod.c
2022-08-17 13:59:33 -07:00

11 lines
227 B
C

#include "testmod/testmod.h"
#include "unity.h"
void setUp(void) {}
void tearDown(void) {}
void test_TestmodDoSomething_Returns3x(void) {
TEST_ASSERT_EQUAL_MESSAGE(15, testmod_dosomething(5), "Returns 3x the argument");
}