except/tests/01_sanity.c

12 lines
141 B
C
Raw Normal View History

2024-11-15 21:53:42 +00:00
#define DEBUG
#include "../include/except.h"
int main(void){
TEST(NULL);
TEST(0 > 1);
TEST(1 > 0);
return EXIT_SUCCESS;
}