Add a unit test app + example tests
This commit is contained in:
@@ -0,0 +1 @@
|
||||
idf_component_register(SRC_DIRS "." INCLUDE_DIRS "." REQUIRES cmock drivers)
|
||||
@@ -0,0 +1,9 @@
|
||||
#include "unity.h"
|
||||
|
||||
TEST_CASE("Example test case", "[cooltag]") {
|
||||
TEST_ASSERT_EQUAL(0, 0);
|
||||
}
|
||||
|
||||
TEST_CASE("test that doesn't run", "[cooltag][ignore]") {
|
||||
TEST_ASSERT_EQUAL(0, 1);
|
||||
}
|
||||
Reference in New Issue
Block a user