1
0
forked from Mirror/wren
Files
wren/test/unit/test.h
Bob Nystrom 5539c59750 Add a minimal path manipulation C module.
This is just for the VM's own internal use, for resolving relative
imports.

Also added a tiny unit test framework for writing tests of low-level
C functionality that isn't exposed directly by the language or VM.
2018-03-24 10:58:07 -07:00

8 lines
115 B
C

// Set this to 1 to output passing tests.
#define SHOW_PASSES 0
void pass();
void fail();
int showTestResults();