WIP use catch2 instead of unity

This commit is contained in:
jacqueline
2022-11-08 10:55:42 +11:00
parent 1958b262ee
commit e219925fac
10 changed files with 18013 additions and 27 deletions
+17
View File
@@ -0,0 +1,17 @@
#include <stdio.h>
#include <string.h>
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);
}