mirror of
https://github.com/dansanderson/c-autotools-template
synced 2025-03-19 17:11:14 -04:00
11 lines
227 B
C
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");
|
|
}
|