iloveos/test/testfischl.cpp
2023-10-15 14:45:30 -07:00

13 lines
185 B
C++

#include "fischl.h"
#include <assert.h>
void testFischlInit(){
fischl *F = new fischl;
assert(F->init()==3);
delete F;
}
int main(){
testFischlInit();
return 0;
}