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

38
test/test_charles.c Normal file
View file

@ -0,0 +1,38 @@
/* test_charles.c
*
* Entry point for charles unit tests.
*
* Eryn Wells <eryn@erynwells.me>
*/
#include <stdlib.h>
#include <stdio.h>
#include <check.h>
#include "test_suites.h"
typedef Suite *(*SuiteCreator)();
SuiteCreator suite_creators[] = {
test_basics_create_suite,
test_object_create_suite,
};
int
main(int argc, const char *argv[])
{
SRunner *runner = srunner_create(NULL);
// Creat the suites and add them to the runner.
int ncreators = sizeof(suite_creators) / sizeof(SuiteCreator);
for (int i = 0; i < ncreators; i++) {
srunner_add_suite(runner, suite_creators[i]());
}
// Run ALL the tests!
srunner_run_all(runner, CK_VERBOSE);
int nfailed = srunner_ntests_failed(runner);
srunner_free(runner);
return (nfailed == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
}