UnitTester
Error queue used to record trapped errors.
UnitTester
Tests exceptions either by type or the exact exception. This could be improved to accept a pattern expectation to test the error message, but that will have to come later.
UnitTester
Stores expected exceptions for when they get thrown. Saves the irritating try...catch block.
UnitTester
Assertion that can display failure information. Also includes various helper methods.
UnitTester
A wildcard expectation always matches.
MockObjects
An expectation that passes on boolean true.
MockObjects
This is called by the class runner to run a single test method. Will also run the setUp() and tearDown() methods.
UnitTester
Do nothing decorator. Just passes the invocation straight through.
UnitTester
Sample minimal test displayer. Generates only failure messages and a pass count.
UnitTester
Sample minimal test displayer. Generates only failure messages and a pass count. For command line use. I've tried to make it look like JUnit, but I wanted to output the errors as they arrived which meant dropping the dots.
UnitTester
Can recieve test events and display them. Display is achieved by making display methods available and visiting the incoming event.
UnitTester
Recipient of generated test messages that can display page footers and headers. Also keeps track of the test nesting. This is the main base class on which to build the finished test (page based) displays.
UnitTester
For modifying the behaviour of the visual reporters.
UnitTester
Container for all components for a specific test run. Makes things like error queues available to PHP event handlers, and also gets around some nasty reference issues in the mocks.
This is a composite test class for combining test cases and other RunnableTest classes into a group test.
UnitTester
UnitTester
This is a failing group test for when a test suite hasn't loaded properly.UnitTester
UnitTester
Creates the XML needed for remote communication by SimpleTest.UnitTester
Accumulator for incoming tag. Holds the incoming test structure information for later dispatch to the reporter.
UnitTester
Accumulator for incoming method tag. Holds the incoming test structure information for later dispatch to the reporter.
UnitTester
Accumulator for incoming case tag. Holds the incoming test structure information for later dispatch to the reporter.
UnitTester
Accumulator for incoming group tag. Holds the incoming test structure information for later dispatch to the reporter.
UnitTester
Parser for importing the output of the XmlReporter. Dispatches that output to another reporter.
UnitTester