What Is wxTest? |
wxTest is a test framework designed in the tradition of the xUnit family. It's used to create automated test suites for C++ code. wxTest consists of an interface specification between tests and test-runners, in the form of abstract virtual C++ classes. Tests can be either test-cases (a single test) or a test-suite (a collection of test-cases or other test-suites). Test are linked into test modules ( .dll's, .shlb's .so's ). Test-runners dynamically load the test modules, execute the tests, and collect the results. The interface between tests and test-runners facilitates complete binary decoupling between the test runners and the test modules.
wxTest includes a a base implemenation for test-cases and test-suites that implement most of the boilerplate behavior required by the interfaces. Tests are created by deriving from these existing base classes. wxTest also includes two test-runners applications: text-only one more feature rich GUI test-runner.
Despite the 'wx' prefix, wxTest can be used to test any C++ code, not just code that uses wxWindows. The interface between tests and test runners is pure C++ and has no dependency to wxWindows. wxTest includes two implementations of test runners: a GUI and a text-only version.
Currently only Win32 is supported. Future version will contain support for Macintosh (Metrowerks CodeWarrior) and Linux (gcc).
Download / CVS |
cvs -d:pserver:anonymous@cvs.wxtest.sourceforge.net:/cvsroot/wxtest login
cvs -z3 -d:pserver:anonymous@cvs.wxtest.sourceforge.net:/cvsroot/wxtest co wxTest
Road Map |
Version 0.2 |
|
|
Version 0.3 |
|
|
Version 0.4 |
|
|
Version 1.0 |
|
This project is hosted by SourceForge.
Copyright © 2001 Marty Saxton, ThunderCow Software