Add test modules

This commit is contained in:
Eryn Wells 2013-09-08 15:18:15 -07:00
parent ebcb67a0cc
commit 5a0d215789
5 changed files with 163 additions and 0 deletions

18
test/test_suites.h Normal file
View file

@ -0,0 +1,18 @@
/* test_suites.h
*
* Declarations of test suite creator functions.
*
* Eryn Wells <eryn@erynwells.me>
*/
#ifndef __TEST_SUITES_H__
#define __TEST_SUITES_H__
#include <check.h>
Suite *test_basics_create_suite();
Suite *test_object_create_suite();
#endif