Main Page | Modules | Class Hierarchy | Alphabetical List | Class List | File List | Class Members | File Members | Related Pages

TestSuite.h

00001 // 00002 // Copyright 2004 P&P Software GmbH - All Rights Reserved 00003 // 00004 // TestCase.h 00005 // 00006 // Version 1.0 00007 // Date 13.09.02 00008 // Author A. Pasetti (P&P Software) 00009 // 00010 00011 // 00012 // A test suite is a collection of test cases that are intended to be 00013 // executed as a single unit. 00014 00015 #ifndef TestSuiteH 00016 #define TestSuiteH 00017 00018 //class TestCase; 00019 #include "TestCase.h" 00020 #include <stdio.h> 00021 00039 class TestSuite { 00040 00041 TestCase* list[MAX_TEST_CASES_IN_SUITE]; 00042 int testCaseCounter; 00043 FILE* out; 00044 00045 public : 00046 00051 TestSuite(FILE* out); 00052 00057 void runTestSuite(void); 00058 00065 void loadTestCase(TestCase* newTestCase); 00066 }; 00067 00068 #endif
Copyright 2003 P&P Software GmbH - All Rights Reserved