17 lines
324 B
C
17 lines
324 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
#include "unity.h"
|
|
|
|
static void print_banner(const char* text);
|
|
|
|
void app_main(void) {
|
|
print_banner("Running all the registered tests");
|
|
UNITY_BEGIN();
|
|
unity_run_all_tests();
|
|
UNITY_END();
|
|
}
|
|
|
|
static void print_banner(const char* text) {
|
|
printf("\n#### %s #####\n\n", text);
|
|
}
|