starting with component unit testing (running on device)

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2024-05-17 12:03:16 +02:00
parent 05f8519864
commit 0944d29597
18 changed files with 127 additions and 13 deletions

View File

@@ -0,0 +1,7 @@
#include "unity.h"
#include "logger.h"
TEST_CASE("Add two numbers", "[logger]") {
TEST_ASSERT_EQUAL(3, add(1, 2));
}