Files
Кобелев Андрей Андреевич a111352dc5 Прошло 2 года.
2026-03-10 22:54:23 +03:00

16 lines
345 B
C

#include <stdio.h>
#include <unity.h>
#include "unity_test_runner.h"
static void print_banner(const char* text) {
printf("\n#### %s #####\n\n", text);
}
void app_main(void) {
print_banner("Running all the registered tests");
UNITY_BEGIN();
// unity_run_tests_by_tag("lut", false);
unity_run_all_tests();
UNITY_END();
}