summaryrefslogtreecommitdiff
path: root/examples/ReadMe.txt
blob: 2944f5fad432f5ca9b195d959d0fd4229ff4ec5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
simple/simple.vcproj: A simple CppUnit's example. Basic TextTestRunner and a single 'standard'
	TestFixture. A good starting point

simple/simple_plugin.vcproj: Like 'simple', but creates a test plug-in. The test plug-in can
	be run with DllPlugInRunner.

hierarchy/: A simple example that demonstrate the use of helper macros with template
	and how to subclass TestFixture.

cppunittest/: CppUnit's unit tests. Contains CppUnitTestMain which build an application
	with CppUnit's tests, and  which wrap the same unit tests into a test plug-in.

ClockerPlugIn/: a 'TestListener' plug-in. Demonstrates the use of the test plug-in to
extends DllPlugInRunner. The test plug-in tracks the time each test and suite takes to run
and includes the timing in the XML output.

DumperPlugIn/: a 'TestListener' plug-in that dumps the test hierarchy as a tree or in
a flattened format (using TestPath).