Renderer/test/c/test.c
austin 52c98beb7a
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
Add tests for chunk.c
2024-12-04 20:20:39 -05:00

27 lines
364 B
C

#include <stdlib.h>
#include <stdio.h>
#include "test.h"
int assertEquals(int a, int b, char * msg){
int rVal = (a != b);
if(rVal){
printf(msg, a, b);
}
return rVal;
}
int assertNotEquals(int a, int b, char * msg){
int rVal = (a == b);
if(rVal){
printf(msg, a, b);
}
return rVal;
}
int test(){
return 0;
}