CppUnit project page FAQ

Class List
Here are the classes, structs, unions and interfaces with brief descriptions:
[detail level 12]
 CAdditionalMessageAn additional Message for assertions.Provides a implicit constructor that takes a single string. This allow this class to be used as the message arguments in macros
 CAsserter
 Cassertion_traitsTraits used by CPPUNIT_ASSERT* macros
 Cassertion_traits< double >Traits used by CPPUNIT_ASSERT_DOUBLES_EQUAL()
 CAutoRegisterRegistry(Implementation) Automatically adds a registry into another registry
 CAutoRegisterSuite(Implementation) Automatically register the test suite of the specified type
 CBriefTestProgressListenerTestListener that prints the name of each test before running it
 CCompilerOutputterOutputs a TestResultCollector in a compiler compatible format.Printing the test results in a compiler compatible format (assertion location has the same format as compiler error), allow you to use your IDE to jump to the assertion failure. Location format can be customized (see setLocationFormat() )
 CConcretTestFixtureFactoryConcret TestFixture factory (Implementation)
 CCppUnitTestPlugInTest plug-in interface.This class define the interface implemented by test plug-in. A pointer to that interface is returned by the function exported by the test plug-in
 CDefaultProtectorDefault protector that catch all exceptions (Implementation)
 CDynamicLibraryManagerManages dynamic libraries
 CDynamicLibraryManagerExceptionException thrown by DynamicLibraryManager when a failure occurs
 CExceptionExceptions thrown by failed assertions.Exception is an exception that serves descriptive strings through its what() method
 CExceptionTestCaseDecoratorExpected exception test case decorator
 CFunctor
 CMessageMessage associated to an Exception.A message is composed of two items:
 COrthodox
 COutputterAbstract outputter to print test result summary
 CPlugInManagerManges TestPlugIn
 CPlugInInfo(INTERNAL) Information about a specific plug-in
 CPlugInParametersTest plug-ins parameters
 CProtectorProtects one or more test case run
 CProtectorChainProtector chain (Implementation). Implementation detail
 CProtectFunctor
 CProtectorContextProtector context (Implementation). Implementation detail
 CProtectorGuardScoped protector push to TestResult
 CRepeatedTestDecorator that runs a test repeatedly
 CSourceLineRepresents a source line location.Used to capture the failure location in assertion
 CStringToolsTool functions to manipulate string
 CSynchronizedObjectBase class for synchronized object
 CExclusiveZoneLocks a synchronization object in the current scope
 CSynchronizationObjectAbstract synchronization object (mutex)
 CTestBase class for all test objects.All test objects should be a subclass of Test. Some test objects, TestCase for example, represent one individual test. Other test objects, such as TestSuite, are comprised of several tests
 CTestCallerGenerate a test case from a fixture method.A test caller provides access to a test case method on a test fixture class. Test callers are useful when you want to run an individual test or add it to a suite. Test Callers invoke only one Test (i.e. test method) on one Fixture of a TestFixture
 CTestCaseA single test object
 CTestCaseDecoratorDecorator for Test cases
 CTestCaseMethodFunctorFunctor to call test case method (Implementation)
 CTestCompositeA Composite of Tests
 CTestDecoratorDecorator for Tests
 CTestFactoryAbstract Test factory
 CTestFactoryRegistryRegistry for TestFactory.Notes that the registry DON'T assumes lifetime control for any registered tests anymore
 CTestFactoryRegistryList(INTERNAL) List of all TestFactoryRegistry
 CTestFailureRecord of a failed Test execution.A TestFailure collects a failed test together with the caught exception
 CTestFixtureWraps a test case with setUp and tearDown methods.A TestFixture is used to provide a common environment for a set of test cases
 CTestFixtureFactoryAbstract TestFixture factory (Implementation)
 CTestLeafA single test object
 CTestListenerListener for test progress and result.Implementing the Observer pattern a TestListener may be registered to a TestResult to obtain information on the testing progress. Use specialized sub classes of TestListener for text output (TextTestProgressListener). Do not use the Listener for the test result output, use a subclass of Outputter instead
 CTestNamerNames a test or a fixture suite
 CTestPathA List of Test representing a path to access a Test.The path can be converted to a string and resolved from a string with toString() and TestPath( Test *root, const std::string &pathAsString )
 CTestPlugInDefaultImplDefault implementation of test plug-in interface.Override getSuiteName() to specify the suite name. Default is "All Tests"
 CTestResultManages TestListener.A single instance of this class is used when running the test. It is usually created by the test runner (TestRunner)
 CTestResultCollectorCollects test result.A TestResultCollector is a TestListener which collects the results of executing a test case. It is an instance of the Collecting Parameter pattern
 CTestRunnerGeneric test runner.The TestRunner assumes ownership of all added tests: you can not add test or suite that are local variable since they can't be deleted
 CWrappingSuite(INTERNAL) Mutating test suite
 CTestSetUpDecorates a test by providing a specific setUp() and tearDown()
 CTestSuccessListenerTestListener that checks if any test case failed
 CTestSuiteA Composite of Tests.It runs a collection of test cases. Here is an example
 CTestSuiteBuilderContextType-sage context used when creating test suite in HelperMacros
 CTestSuiteBuilderContextBaseContext used when creating test suite in HelperMacros
 CTestSuiteFactoryTestFactory for TestFixture that implements a static suite() method
 CTextOutputterPrints a TestResultCollector to a text stream
 CTextTestProgressListenerTestListener that show the status of each TestCase test result
 CTextTestResultHolds printable test result (DEPRECATED).deprecated Use class TextTestProgressListener and TextOutputter instead
 CTextTestRunnerA text mode test runner.The test runner manage the life cycle of the added tests
 CTypeInfoHelper!
 CXmlDocumentA XML Document
 CXmlElementA XML Element
 CXmlOutputterOutputs a TestResultCollector in XML format.Save the test result as a XML stream
 CXmlOutputterHookHook to customize Xml output

Send comments to:
CppUnit Developers