Testing
A minimal, macro-based Unit Test framework included in the kernel.
Methodology
Writing Tests
#include "tests.h"
TEST(test_logic) {
REQUIRE(1 == 1);
// If false, prints file/line and increments failure count.
}Last updated