Add default skel for unit tests. Move test programs to demo.

This commit is contained in:
Vreixo Formoso
2007-11-29 22:06:56 +01:00
parent efff783602
commit 3c7f1285d6
8 changed files with 68 additions and 17 deletions

13
test/test_node.c Normal file
View File

@ -0,0 +1,13 @@
/*
* Unit test for node.h
*/
#include "libisofs.h"
#include "node.h"
#include "test.h"
void add_node_suite()
{
CU_pSuite pSuite = CU_add_suite("Node Test Suite", NULL, NULL);
}