Basics of test case framework

This commit is contained in:
Angus Gratton 2016-02-08 14:15:12 +11:00
parent 9dec5dd628
commit 97a46e8c1a
7 changed files with 162 additions and 0 deletions

8
tests/cases/01_basic.c Normal file
View file

@ -0,0 +1,8 @@
#include "testcase.h"
DEFINE_SOLO_TESTCASE(01_basic)
static bool a_01_basic()
{
return false;
}