diff options
author | vimene <vincent.menegaux@gmail.com> | 2023-11-28 06:33:03 +0100 |
---|---|---|
committer | vimene <vincent.menegaux@gmail.com> | 2023-11-28 06:33:03 +0100 |
commit | 7b4214055a8266fb33561d4a803b4ca0a155157f (patch) | |
tree | 51dc202a45238a98795d9ae105040358eb6fdaeb /tests/test.c | |
parent | 5b63a7937c95c3737826cb2b43cb607b96f26011 (diff) | |
download | engine-7b4214055a8266fb33561d4a803b4ca0a155157f.tar.gz |
integrated criterion within autotools
Diffstat (limited to 'tests/test.c')
-rw-r--r-- | tests/test.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test.c b/tests/test.c index 06fa399..a16c63a 100644 --- a/tests/test.c +++ b/tests/test.c @@ -1 +1,5 @@ #include <criterion/criterion.h> + +Test(simple, test) { + cr_assert(0, "Hello, World!"); +} |