Blame examples/ReadMe.txt

Packit 8c9aa0
simple/simple.dsp: A simple CppUnit's example. Basic TextTestRunner and a single 'standard' 
Packit 8c9aa0
	TestFixture. A good starting point
Packit 8c9aa0
Packit 8c9aa0
simple/simple_plugin.dsp: Like 'simple', but creates a test plug-in. The test plug-in can
Packit 8c9aa0
	be run with DllPlugInRunner.
Packit 8c9aa0
Packit 8c9aa0
hierarchy/: A simple example that demonstrate the use of helper macros with template
Packit 8c9aa0
	and how to subclass TestFixture.
Packit 8c9aa0
Packit 8c9aa0
cppunittest/: CppUnit's unit tests. Contains CppUnitTestMain which build an application
Packit 8c9aa0
	with CppUnit's tests, and  which wrap the same unit tests into a test plug-in.
Packit 8c9aa0
Packit 8c9aa0
ClockerPlugIn/: a 'TestListener' plug-in. Demonstrates the use of the test plug-in to
Packit 8c9aa0
extends DllPlugInRunner. The test plug-in tracks the time each test and suite takes to run
Packit 8c9aa0
and includes the timing in the XML output.
Packit 8c9aa0
Packit 8c9aa0
DumperPlugIn/: a 'TestListener' plug-in that dumps the test hierarchy as a tree or in
Packit 8c9aa0
a flattened format (using TestPath).