blob: 2a43341a8452f373a6f2dc61aeb4bf3e976e6d8c (
plain)
1
2
3
4
5
6
7
8
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);
}
|