Implemented basic unit tests

This commit is contained in:
Mario Danic
2007-06-01 12:57:09 +00:00
parent d4dec78786
commit 0a4a263ad8
9 changed files with 1011 additions and 15 deletions

View File

@@ -0,0 +1,18 @@
#include "test.h"
int main(int argc, char **argv)
{
test_tree();
test_exclude();
test_file_hashtable();
return 0;
}
#include "test.h"
int main(int argc, char **argv)
{
test_tree();
test_exclude();
test_file_hashtable();
return 0;
}