From e219925fac2d9b0b054445ac9c094d51ae30fd17 Mon Sep 17 00:00:00 2001 From: jacqueline Date: Tue, 8 Nov 2022 10:55:42 +1100 Subject: WIP use catch2 instead of unity --- test/main/main.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 test/main/main.cpp (limited to 'test/main/main.cpp') diff --git a/test/main/main.cpp b/test/main/main.cpp new file mode 100644 index 00000000..06e733c4 --- /dev/null +++ b/test/main/main.cpp @@ -0,0 +1,17 @@ +#include +#include + +static void print_banner(const char* text); + +extern "C" { + void app_main(void) + { + print_banner("Running tests without [ignore] tag"); + } +} + +static void print_banner(const char* text) +{ + printf("\n#### %s #####\n\n", text); +} + -- cgit v1.2.3