22 lines
261 B
C
22 lines
261 B
C
#include "unity.h"
|
|
#include "test_memory.h"
|
|
#include "test_string.h"
|
|
#include "test_os.h"
|
|
|
|
void setUp() {
|
|
|
|
}
|
|
|
|
void tearDown() {
|
|
|
|
}
|
|
|
|
int main() {
|
|
printf("\n");
|
|
UNITY_BEGIN();
|
|
test_memory();
|
|
test_string();
|
|
test_os();
|
|
return UNITY_END();
|
|
}
|