17 lines
304 B
C
17 lines
304 B
C
#include "unity.h"
|
|
|
|
void setUp(void) { }
|
|
void tearDown(void) { }
|
|
|
|
void test_hello_world(void) {
|
|
// Add a test case here.
|
|
// For example, you can call the function from main.c and verify its output.
|
|
}
|
|
|
|
int main(void) {
|
|
UNITY_BEGIN();
|
|
RUN_TEST(test_hello_world);
|
|
return UNITY_END();
|
|
}
|
|
|