ports/devel/criterion/files/example.c
Yuri Victorovich c32decee33 devel/criterion: New port: C and C++ unit testing framework for the 21st century
This KISS-compliant library makes testsuites as simple as possible.
2022-07-03 11:47:18 -07:00

5 lines
92 B
C

#include <criterion/criterion.h>
Test(simple, Test) {
cr_assert(false, "Hello World!");
}