summaryrefslogtreecommitdiff
path: root/test/main/main.c
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2022-11-08 10:55:42 +1100
committerjacqueline <me@jacqueline.id.au>2022-11-08 10:55:42 +1100
commite219925fac2d9b0b054445ac9c094d51ae30fd17 (patch)
tree676c36f897a5eedcfa69ef9b98ceb5eeedb62b54 /test/main/main.c
parent1958b262ee84960c65ebf1d465c8c7d80e32b58c (diff)
downloadtangara-fw-e219925fac2d9b0b054445ac9c094d51ae30fd17.tar.gz
WIP use catch2 instead of unity
Diffstat (limited to 'test/main/main.c')
-rw-r--r--test/main/main.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/main/main.c b/test/main/main.c
deleted file mode 100644
index 6806aa2e..00000000
--- a/test/main/main.c
+++ /dev/null
@@ -1,22 +0,0 @@
-#include <stdio.h>
-#include <string.h>
-#include "unity.h"
-
-static void print_banner(const char* text);
-
-void app_main(void)
-{
- print_banner("Running tests without [ignore] tag");
- UNITY_BEGIN();
- unity_run_tests_by_tag("[ignore]", true);
- UNITY_END();
-
- print_banner("Starting interactive test menu");
- unity_run_menu();
-}
-
-static void print_banner(const char* text)
-{
- printf("\n#### %s #####\n\n", text);
-}
-