Classes

\

Name Description
Exception No description available UNTESTED
PHPUnit_Extensions_GroupTestSuite We have a TestSuite object A. UNTESTED
PHPUnit_Extensions_PhptTestCase Runner for PHPT test cases. UNTESTED
PHPUnit_Extensions_PhptTestSuite Suite for .phpt test cases. UNTESTED
PHPUnit_Extensions_RepeatedTest A Decorator that runs a test repeatedly. UNTESTED
PHPUnit_Extensions_TestDecorator A Decorator for Tests. UNTESTED
PHPUnit_Extensions_TicketListener Base class for test listeners that interact with an issue tracker. UNTESTED
PHPUnit_Framework_Assert A set of assert methods. UNTESTED
PHPUnit_Framework_AssertionFailedError Thrown when an assertion failed. UNTESTED
PHPUnit_Framework_BaseTestListener An empty Listener that can be extended to implement TestListener with just a few lines of code. UNTESTED
PHPUnit_Framework_CodeCoverageException No description available UNTESTED
PHPUnit_Framework_Constraint Abstract base class for constraints. which are placed upon any value. UNTESTED
PHPUnit_Framework_Constraint_And Logical AND. UNTESTED
PHPUnit_Framework_Constraint_ArrayHasKey Constraint that asserts that the array it is evaluated for has a given key. UNTESTED
PHPUnit_Framework_Constraint_ArraySubset Constraint that asserts that the array it is evaluated for has a specified subset. UNTESTED
PHPUnit_Framework_Constraint_Attribute No description available UNTESTED
PHPUnit_Framework_Constraint_Callback Constraint that evaluates against a specified closure. UNTESTED
PHPUnit_Framework_Constraint_ClassHasAttribute Constraint that asserts that the class it is evaluated for has a given attribute. UNTESTED
PHPUnit_Framework_Constraint_ClassHasStaticAttribute Constraint that asserts that the class it is evaluated for has a given static attribute. UNTESTED
PHPUnit_Framework_Constraint_Composite No description available UNTESTED
PHPUnit_Framework_Constraint_Count No description available UNTESTED
PHPUnit_Framework_Constraint_Exception No description available UNTESTED
PHPUnit_Framework_Constraint_ExceptionCode No description available UNTESTED
PHPUnit_Framework_Constraint_ExceptionMessage No description available UNTESTED
PHPUnit_Framework_Constraint_ExceptionMessageRegExp No description available UNTESTED
PHPUnit_Framework_Constraint_FileExists Constraint that checks if the file(name) that it is evaluated for exists. UNTESTED
PHPUnit_Framework_Constraint_GreaterThan Constraint that asserts that the value it is evaluated for is greater than a given value. UNTESTED
PHPUnit_Framework_Constraint_IsAnything Constraint that accepts any input value. UNTESTED
PHPUnit_Framework_Constraint_IsEmpty Constraint that checks whether a variable is empty(). UNTESTED
PHPUnit_Framework_Constraint_IsEqual Constraint that checks if one value is equal to another. UNTESTED
PHPUnit_Framework_Constraint_IsFalse Constraint that accepts false. UNTESTED
PHPUnit_Framework_Constraint_IsIdentical Constraint that asserts that one value is identical to another. UNTESTED
PHPUnit_Framework_Constraint_IsInstanceOf Constraint that asserts that the object it is evaluated for is an instance of a given class. UNTESTED
PHPUnit_Framework_Constraint_IsJson Constraint that asserts that a string is valid JSON. UNTESTED
PHPUnit_Framework_Constraint_IsNull Constraint that accepts null. UNTESTED
PHPUnit_Framework_Constraint_IsTrue Constraint that accepts true. UNTESTED
PHPUnit_Framework_Constraint_IsType Constraint that asserts that the value it is evaluated for is of a specified type. UNTESTED
PHPUnit_Framework_Constraint_JsonMatches Asserts whether or not two JSON objects are equal. UNTESTED
PHPUnit_Framework_Constraint_JsonMatches_ErrorMessageProvider Provides human readable messages for each JSON error. UNTESTED
PHPUnit_Framework_Constraint_LessThan Constraint that asserts that the value it is evaluated for is less than a given value. UNTESTED
PHPUnit_Framework_Constraint_Not Logical NOT. UNTESTED
PHPUnit_Framework_Constraint_ObjectHasAttribute Constraint that asserts that the object it is evaluated for has a given attribute. UNTESTED
PHPUnit_Framework_Constraint_Or Logical OR. UNTESTED
PHPUnit_Framework_Constraint_PCREMatch Constraint that asserts that the string it is evaluated for matches a regular expression. UNTESTED
PHPUnit_Framework_Constraint_SameSize No description available UNTESTED
PHPUnit_Framework_Constraint_StringContains Constraint that asserts that the string it is evaluated for contains a given string. UNTESTED
PHPUnit_Framework_Constraint_StringEndsWith Constraint that asserts that the string it is evaluated for ends with a given suffix. UNTESTED
PHPUnit_Framework_Constraint_StringMatches ... UNTESTED
PHPUnit_Framework_Constraint_StringStartsWith Constraint that asserts that the string it is evaluated for begins with a given prefix. UNTESTED
PHPUnit_Framework_Constraint_TraversableContains Constraint that asserts that the Traversable it is applied to contains a given value. UNTESTED
PHPUnit_Framework_Constraint_TraversableContainsOnly Constraint that asserts that the Traversable it is applied to contains only values of a given type. UNTESTED
PHPUnit_Framework_Constraint_Xor Logical XOR. UNTESTED
PHPUnit_Framework_Error Wrapper for PHP errors. UNTESTED
PHPUnit_Framework_Error_Deprecated Wrapper for PHP deprecated errors. UNTESTED
PHPUnit_Framework_Error_Notice Wrapper for PHP notices. UNTESTED
PHPUnit_Framework_Error_Warning Wrapper for PHP warnings. UNTESTED
PHPUnit_Framework_Exception Base class for all PHPUnit Framework exceptions. UNTESTED
PHPUnit_Framework_ExceptionWrapper Wraps Exceptions thrown by code under test. UNTESTED
PHPUnit_Framework_ExpectationFailedException Exception for expectations which failed their check. UNTESTED
PHPUnit_Framework_IncompleteTestCase An incomplete test case UNTESTED
PHPUnit_Framework_IncompleteTestError Extension to PHPUnit_Framework_AssertionFailedError to mark the special case of an incomplete test. UNTESTED
PHPUnit_Framework_InvalidCoversTargetError Extension to PHPUnit_Framework_AssertionFailedError to mark the special case of a test that is skipped because of an invalid @covers annotation. UNTESTED
PHPUnit_Framework_InvalidCoversTargetException No description available UNTESTED
PHPUnit_Framework_OutputError Extension to PHPUnit_Framework_AssertionFailedError to mark the special case of a test that printed output. UNTESTED
PHPUnit_Framework_RiskyTestError Extension to PHPUnit_Framework_AssertionFailedError to mark the special case of a risky test. UNTESTED
PHPUnit_Framework_SkippedTestCase A skipped test case UNTESTED
PHPUnit_Framework_SkippedTestError Extension to PHPUnit_Framework_AssertionFailedError to mark the special case of a skipped test. UNTESTED
PHPUnit_Framework_SkippedTestSuiteError Extension to PHPUnit_Framework_AssertionFailedError to mark the special case of a skipped test suite. UNTESTED
PHPUnit_Framework_SyntheticError Creates a synthetic failed assertion. UNTESTED
PHPUnit_Framework_TestCase A TestCase defines the fixture to run multiple tests. UNTESTED
PHPUnit_Framework_TestFailure A TestFailure collects a failed test together with the caught exception. UNTESTED
PHPUnit_Framework_TestResult A TestResult collects the results of executing a test case. UNTESTED
PHPUnit_Framework_TestSuite A TestSuite is a composite of Tests. It runs a collection of test cases. UNTESTED
PHPUnit_Framework_TestSuite_DataProvider No description available UNTESTED
PHPUnit_Framework_UnintentionallyCoveredCodeError Extension to PHPUnit_Framework_AssertionFailedError to mark the special case of a test test that unintentionally covers code. UNTESTED
PHPUnit_Framework_Warning A warning. UNTESTED
PHPUnit_Runner_BaseTestRunner Base class for all test runners. UNTESTED
PHPUnit_Runner_Exception No description available UNTESTED
PHPUnit_Runner_Filter_Factory No description available UNTESTED
PHPUnit_Runner_Filter_GroupFilterIterator No description available UNTESTED
PHPUnit_Runner_Filter_Group_Exclude No description available UNTESTED
PHPUnit_Runner_Filter_Group_Include No description available UNTESTED
PHPUnit_Runner_Filter_Test No description available UNTESTED
PHPUnit_Runner_StandardTestSuiteLoader The standard test suite loader. UNTESTED
PHPUnit_Runner_Version This class defines the current version of PHPUnit. UNTESTED
PHPUnit_TextUI_Command A TestRunner for the Command Line Interface (CLI) PHP SAPI Module. UNTESTED
PHPUnit_TextUI_ResultPrinter Prints the result of a TextUI TestRunner run. UNTESTED
PHPUnit_TextUI_TestRunner A TestRunner for the Command Line Interface (CLI) PHP SAPI Module. UNTESTED
PHPUnit_Util_Blacklist Utility class for blacklisting PHPUnit's own source code files. UNTESTED
PHPUnit_Util_Configuration Wrapper for the PHPUnit XML configuration file. UNTESTED
PHPUnit_Util_ErrorHandler Error handler that converts PHP errors and warnings to exceptions. UNTESTED
PHPUnit_Util_Fileloader Utility methods to load PHP sourcefiles. UNTESTED
PHPUnit_Util_Filesystem Filesystem helpers. UNTESTED
PHPUnit_Util_Filter Utility class for code filtering. UNTESTED
PHPUnit_Util_Getopt Command-line options parsing class. UNTESTED
PHPUnit_Util_GlobalState No description available UNTESTED
PHPUnit_Util_InvalidArgumentHelper Factory for PHPUnit_Framework_Exception objects that are used to describe invalid arguments passed to a function or method. UNTESTED
PHPUnit_Util_Log_JSON A TestListener that generates JSON messages. UNTESTED
PHPUnit_Util_Log_JUnit A TestListener that generates a logfile of the test execution in XML markup. UNTESTED
PHPUnit_Util_Log_TAP A TestListener that generates a logfile of the test execution using the Test Anything Protocol (TAP). UNTESTED
PHPUnit_Util_PHP Utility methods for PHP sub-processes. UNTESTED
PHPUnit_Util_PHP_Default Default utility for PHP sub-processes. UNTESTED
PHPUnit_Util_PHP_Windows Windows utility for PHP sub-processes. UNTESTED
PHPUnit_Util_Printer Utility class that can print to STDOUT or write to a file. UNTESTED
PHPUnit_Util_Regex Error handler that converts PHP errors and warnings to exceptions. UNTESTED
PHPUnit_Util_String String helpers. UNTESTED
PHPUnit_Util_Test Test helpers. UNTESTED
PHPUnit_Util_TestDox_NamePrettifier Prettifies class and method names for use in TestDox documentation. UNTESTED
PHPUnit_Util_TestDox_ResultPrinter Base class for printers of TestDox documentation. UNTESTED
PHPUnit_Util_TestDox_ResultPrinter_HTML Prints TestDox documentation in HTML format. UNTESTED
PHPUnit_Util_TestDox_ResultPrinter_Text Prints TestDox documentation in text format. UNTESTED
PHPUnit_Util_TestSuiteIterator Iterator for test suites. UNTESTED
PHPUnit_Util_Type Utility class for textual type (and value) representation. UNTESTED
PHPUnit_Util_XML XML helpers. UNTESTED
RecursiveFilterIterator No description available UNTESTED
RuntimeException No description available UNTESTED