Files
except/tests/01_sanity.c

14 lines
253 B
C
Raw Normal View History

2026-02-02 19:18:03 -06:00
#define DEBUG
#include "../include/except.h"
#include <stdlib.h>
#include <stdio.h>
int main(void){
printf("\n\n");
printf("Assertion sanity test. These two tests are supposed to fail!!\n");
ASSERTED(NULL);
return EXIT_SUCCESS;
}