iloveos/test/testfischl.cpp
2023-11-15 03:10:12 -08:00

13 lines
197 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;
}