From dbdc68a32b770603bad4128298594bffe2b24799 Mon Sep 17 00:00:00 2001 From: Jan Hutter Date: Thu, 3 Nov 2005 10:15:22 +0000 Subject: [PATCH] test_all now counts number of tests --- Source/charon/tester.c | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/Source/charon/tester.c b/Source/charon/tester.c index a0fbc2d42..044005c9e 100644 --- a/Source/charon/tester.c +++ b/Source/charon/tester.c @@ -27,6 +27,7 @@ #include #include "tester.h" +#include "linked_list.h" typedef struct { tester_t tester; @@ -34,14 +35,28 @@ typedef struct { FILE* output; } private_tester_t; +/** + * @brief Test function to test the linked list class + */ +static status_t test_linked_list(private_tester_t * this){ + fprintf(this->output,"Test linked list class...\n"); + linked_list_t * linked_list_create(); + + return FAILED; +} static status_t test_all(tester_t *tester) { private_tester_t *this =(private_tester_t*) tester; + int tests_failed = 0; + int test_count = 0; fprintf(this->output,"Start testing\n"); - - fprintf(this->output,"End testing\n"); + + if (test_linked_list(this) != SUCCESS){ tests_failed++; } test_count++; + + fprintf(this->output,"End testing. %d tests failed of %d tests\n",tests_failed,test_count); + //report_leaks(); return SUCCESS; }