class Util_TestTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/tests/Util/TestTest.php \Util_TestTest
@since Class available since Release 3.3.6
Hierarchy
- class \PHPUnit_Framework_Assert
- class \PHPUnit_Framework_TestCase implements PHPUnit_Framework_SelfDescribing, PHPUnit_Framework_Test
- class \Util_TestTest
- class \PHPUnit_Framework_TestCase implements PHPUnit_Framework_SelfDescribing, PHPUnit_Framework_Test
Expanded class hierarchy of Util_TestTest
File
- vendor/
phpunit/ phpunit/ tests/ Util/ TestTest.php, line 25
View source
class Util_TestTest extends PHPUnit_Framework_TestCase {
/**
* @covers PHPUnit_Util_Test::getExpectedException
* @todo Split up in separate tests
*/
public function testGetExpectedException() {
$this
->assertArraySubset(array(
'class' => 'FooBarBaz',
'code' => null,
'message' => '',
), PHPUnit_Util_Test::getExpectedException('ExceptionTest', 'testOne'));
$this
->assertArraySubset(array(
'class' => 'Foo_Bar_Baz',
'code' => null,
'message' => '',
), PHPUnit_Util_Test::getExpectedException('ExceptionTest', 'testTwo'));
$this
->assertArraySubset(array(
'class' => 'Foo\\Bar\\Baz',
'code' => null,
'message' => '',
), PHPUnit_Util_Test::getExpectedException('ExceptionTest', 'testThree'));
$this
->assertArraySubset(array(
'class' => 'ほげ',
'code' => null,
'message' => '',
), PHPUnit_Util_Test::getExpectedException('ExceptionTest', 'testFour'));
$this
->assertArraySubset(array(
'class' => 'Class',
'code' => 1234,
'message' => 'Message',
), PHPUnit_Util_Test::getExpectedException('ExceptionTest', 'testFive'));
$this
->assertArraySubset(array(
'class' => 'Class',
'code' => 1234,
'message' => 'Message',
), PHPUnit_Util_Test::getExpectedException('ExceptionTest', 'testSix'));
$this
->assertArraySubset(array(
'class' => 'Class',
'code' => 'ExceptionCode',
'message' => 'Message',
), PHPUnit_Util_Test::getExpectedException('ExceptionTest', 'testSeven'));
$this
->assertArraySubset(array(
'class' => 'Class',
'code' => 0,
'message' => 'Message',
), PHPUnit_Util_Test::getExpectedException('ExceptionTest', 'testEight'));
$this
->assertArraySubset(array(
'class' => 'Class',
'code' => ExceptionTest::ERROR_CODE,
'message' => ExceptionTest::ERROR_MESSAGE,
), PHPUnit_Util_Test::getExpectedException('ExceptionTest', 'testNine'));
$this
->assertArraySubset(array(
'class' => 'Class',
'code' => null,
'message' => '',
), PHPUnit_Util_Test::getExpectedException('ExceptionTest', 'testSingleLine'));
$this
->assertArraySubset(array(
'class' => 'Class',
'code' => My\Space\ExceptionNamespaceTest::ERROR_CODE,
'message' => My\Space\ExceptionNamespaceTest::ERROR_MESSAGE,
), PHPUnit_Util_Test::getExpectedException('My\\Space\\ExceptionNamespaceTest', 'testConstants'));
// Ensure the Class::CONST expression is only evaluated when the constant really exists
$this
->assertArraySubset(array(
'class' => 'Class',
'code' => 'ExceptionTest::UNKNOWN_CODE_CONSTANT',
'message' => 'ExceptionTest::UNKNOWN_MESSAGE_CONSTANT',
), PHPUnit_Util_Test::getExpectedException('ExceptionTest', 'testUnknownConstants'));
$this
->assertArraySubset(array(
'class' => 'Class',
'code' => 'My\\Space\\ExceptionNamespaceTest::UNKNOWN_CODE_CONSTANT',
'message' => 'My\\Space\\ExceptionNamespaceTest::UNKNOWN_MESSAGE_CONSTANT',
), PHPUnit_Util_Test::getExpectedException('My\\Space\\ExceptionNamespaceTest', 'testUnknownConstants'));
}
/**
* @covers PHPUnit_Util_Test::getExpectedException
*/
public function testGetExpectedRegExp() {
$this
->assertArraySubset(array(
'message_regex' => '#regex#',
), PHPUnit_Util_Test::getExpectedException('ExceptionTest', 'testWithRegexMessage'));
$this
->assertArraySubset(array(
'message_regex' => '#regex#',
), PHPUnit_Util_Test::getExpectedException('ExceptionTest', 'testWithRegexMessageFromClassConstant'));
$this
->assertArraySubset(array(
'message_regex' => 'ExceptionTest::UNKNOWN_MESSAGE_REGEX_CONSTANT',
), PHPUnit_Util_Test::getExpectedException('ExceptionTest', 'testWithUnknowRegexMessageFromClassConstant'));
}
/**
* @covers PHPUnit_Util_Test::getRequirements
* @dataProvider requirementsProvider
*/
public function testGetRequirements($test, $result) {
$this
->assertEquals($result, PHPUnit_Util_Test::getRequirements('RequirementsTest', $test));
}
public function requirementsProvider() {
return array(
array(
'testOne',
array(),
),
array(
'testTwo',
array(
'PHPUnit' => '1.0',
),
),
array(
'testThree',
array(
'PHP' => '2.0',
),
),
array(
'testFour',
array(
'PHPUnit' => '2.0',
'PHP' => '1.0',
),
),
array(
'testFive',
array(
'PHP' => '5.4.0RC6',
),
),
array(
'testSix',
array(
'PHP' => '5.4.0-alpha1',
),
),
array(
'testSeven',
array(
'PHP' => '5.4.0beta2',
),
),
array(
'testEight',
array(
'PHP' => '5.4-dev',
),
),
array(
'testNine',
array(
'functions' => array(
'testFunc',
),
),
),
array(
'testTen',
array(
'extensions' => array(
'testExt',
),
),
),
array(
'testEleven',
array(
'OS' => '/Linux/i',
),
),
array(
'testSpace',
array(
'extensions' => array(
'spl',
),
'OS' => '/.*/i',
),
),
array(
'testAllPossibleRequirements',
array(
'PHP' => '99-dev',
'PHPUnit' => '9-dev',
'OS' => '/DOESNOTEXIST/i',
'functions' => array(
'testFuncOne',
'testFuncTwo',
),
'extensions' => array(
'testExtOne',
'testExtTwo',
),
),
),
);
}
/**
* @covers PHPUnit_Util_Test::getRequirements
*/
public function testGetRequirementsMergesClassAndMethodDocBlocks() {
$expectedAnnotations = array(
'PHP' => '5.4',
'PHPUnit' => '3.7',
'OS' => '/WINNT/i',
'functions' => array(
'testFuncClass',
'testFuncMethod',
),
'extensions' => array(
'testExtClass',
'testExtMethod',
),
);
$this
->assertEquals($expectedAnnotations, PHPUnit_Util_Test::getRequirements('RequirementsClassDocBlockTest', 'testMethod'));
}
/**
* @covers PHPUnit_Util_Test::getMissingRequirements
* @dataProvider missingRequirementsProvider
*/
public function testGetMissingRequirements($test, $result) {
$this
->assertEquals($result, PHPUnit_Util_Test::getMissingRequirements('RequirementsTest', $test));
}
public function missingRequirementsProvider() {
return array(
array(
'testOne',
array(),
),
array(
'testNine',
array(
'Function testFunc is required.',
),
),
array(
'testTen',
array(
'Extension testExt is required.',
),
),
array(
'testAlwaysSkip',
array(
'PHPUnit 1111111 (or later) is required.',
),
),
array(
'testAlwaysSkip2',
array(
'PHP 9999999 (or later) is required.',
),
),
array(
'testAlwaysSkip3',
array(
'Operating system matching /DOESNOTEXIST/i is required.',
),
),
array(
'testAllPossibleRequirements',
array(
'PHP 99-dev (or later) is required.',
'PHPUnit 9-dev (or later) is required.',
'Operating system matching /DOESNOTEXIST/i is required.',
'Function testFuncOne is required.',
'Function testFuncTwo is required.',
'Extension testExtOne is required.',
'Extension testExtTwo is required.',
),
),
);
}
/**
* @coversNothing
* @todo This test does not really test functionality of PHPUnit_Util_Test
*/
public function testGetProvidedDataRegEx() {
$result = preg_match(PHPUnit_Util_Test::REGEX_DATA_PROVIDER, '@dataProvider method', $matches);
$this
->assertEquals(1, $result);
$this
->assertEquals('method', $matches[1]);
$result = preg_match(PHPUnit_Util_Test::REGEX_DATA_PROVIDER, '@dataProvider class::method', $matches);
$this
->assertEquals(1, $result);
$this
->assertEquals('class::method', $matches[1]);
$result = preg_match(PHPUnit_Util_Test::REGEX_DATA_PROVIDER, '@dataProvider namespace\\class::method', $matches);
$this
->assertEquals(1, $result);
$this
->assertEquals('namespace\\class::method', $matches[1]);
$result = preg_match(PHPUnit_Util_Test::REGEX_DATA_PROVIDER, '@dataProvider namespace\\namespace\\class::method', $matches);
$this
->assertEquals(1, $result);
$this
->assertEquals('namespace\\namespace\\class::method', $matches[1]);
$result = preg_match(PHPUnit_Util_Test::REGEX_DATA_PROVIDER, '@dataProvider メソッド', $matches);
$this
->assertEquals(1, $result);
$this
->assertEquals('メソッド', $matches[1]);
}
/**
* @covers PHPUnit_Util_Test::getDataFromTestWithAnnotation
*/
public function testTestWithEmptyAnnotation() {
$result = PHPUnit_Util_Test::getDataFromTestWithAnnotation("/**\n * @anotherAnnotation\n */");
$this
->assertNull($result);
}
/**
* @covers PHPUnit_Util_Test::getDataFromTestWithAnnotation
*/
public function testTestWithSimpleCase() {
$result = PHPUnit_Util_Test::getDataFromTestWithAnnotation('/**
* @testWith [1]
*/');
$this
->assertEquals(array(
array(
1,
),
), $result);
}
/**
* @covers PHPUnit_Util_Test::getDataFromTestWithAnnotation
*/
public function testTestWithMultiLineMultiParameterCase() {
$result = PHPUnit_Util_Test::getDataFromTestWithAnnotation('/**
* @testWith [1, 2]
* [3, 4]
*/');
$this
->assertEquals(array(
array(
1,
2,
),
array(
3,
4,
),
), $result);
}
/**
* @covers PHPUnit_Util_Test::getDataFromTestWithAnnotation
*/
public function testTestWithVariousTypes() {
$result = PHPUnit_Util_Test::getDataFromTestWithAnnotation('/**
* @testWith ["ab"]
* [true]
* [null]
*/');
$this
->assertEquals(array(
array(
'ab',
),
array(
true,
),
array(
null,
),
), $result);
}
/**
* @covers PHPUnit_Util_Test::getDataFromTestWithAnnotation
*/
public function testTestWithAnnotationAfter() {
$result = PHPUnit_Util_Test::getDataFromTestWithAnnotation('/**
* @testWith [1]
* [2]
* @annotation
*/');
$this
->assertEquals(array(
array(
1,
),
array(
2,
),
), $result);
}
/**
* @covers PHPUnit_Util_Test::getDataFromTestWithAnnotation
*/
public function testTestWithSimpleTextAfter() {
$result = PHPUnit_Util_Test::getDataFromTestWithAnnotation('/**
* @testWith [1]
* [2]
* blah blah
*/');
$this
->assertEquals(array(
array(
1,
),
array(
2,
),
), $result);
}
/**
* @covers PHPUnit_Util_Test::getDataFromTestWithAnnotation
*/
public function testTestWithCharacterEscape() {
$result = PHPUnit_Util_Test::getDataFromTestWithAnnotation('/**
* @testWith ["\\"", "\\""]
*/');
$this
->assertEquals(array(
array(
'"',
'"',
),
), $result);
}
/**
* @covers PHPUnit_Util_Test::getDataFromTestWithAnnotation
*/
public function testTestWithThrowsProperExceptionIfDatasetCannotBeParsed() {
$this
->setExpectedExceptionRegExp('PHPUnit_Framework_Exception', '/^The dataset for the @testWith annotation cannot be parsed.$/');
PHPUnit_Util_Test::getDataFromTestWithAnnotation('/**
* @testWith [s]
*/');
}
/**
* @covers PHPUnit_Util_Test::getDependencies
* @todo Not sure what this test tests (name is misleading at least)
*/
public function testParseAnnotation() {
$this
->assertEquals(array(
'Foo',
'ほげ',
), PHPUnit_Util_Test::getDependencies(get_class($this), 'methodForTestParseAnnotation'));
}
/**
* @depends Foo
* @depends ほげ
* @todo Remove fixture from test class
*/
public function methodForTestParseAnnotation() {
}
/**
* @covers PHPUnit_Util_Test::getDependencies
*/
public function testParseAnnotationThatIsOnlyOneLine() {
$this
->assertEquals(array(
'Bar',
), PHPUnit_Util_Test::getDependencies(get_class($this), 'methodForTestParseAnnotationThatIsOnlyOneLine'));
}
/** @depends Bar */
public function methodForTestParseAnnotationThatIsOnlyOneLine() {
// TODO Remove fixture from test class
}
/**
* @covers PHPUnit_Util_Test::getLinesToBeCovered
* @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed
* @covers PHPUnit_Util_Test::resolveElementToReflectionObjects
* @dataProvider getLinesToBeCoveredProvider
*/
public function testGetLinesToBeCovered($test, $lines) {
if (strpos($test, 'Namespace') === 0) {
$expected = array(
TEST_FILES_PATH . 'NamespaceCoveredClass.php' => $lines,
);
}
elseif ($test === 'CoverageNoneTest') {
$expected = array();
}
elseif ($test === 'CoverageNothingTest') {
$expected = false;
}
elseif ($test === 'CoverageFunctionTest') {
$expected = array(
TEST_FILES_PATH . 'CoveredFunction.php' => $lines,
);
}
else {
$expected = array(
TEST_FILES_PATH . 'CoveredClass.php' => $lines,
);
}
$this
->assertEquals($expected, PHPUnit_Util_Test::getLinesToBeCovered($test, 'testSomething'));
}
/**
* @covers PHPUnit_Util_Test::getLinesToBeCovered
* @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed
* @covers PHPUnit_Util_Test::resolveElementToReflectionObjects
* @expectedException PHPUnit_Framework_CodeCoverageException
*/
public function testGetLinesToBeCovered2() {
PHPUnit_Util_Test::getLinesToBeCovered('NotExistingCoveredElementTest', 'testOne');
}
/**
* @covers PHPUnit_Util_Test::getLinesToBeCovered
* @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed
* @covers PHPUnit_Util_Test::resolveElementToReflectionObjects
* @expectedException PHPUnit_Framework_CodeCoverageException
*/
public function testGetLinesToBeCovered3() {
PHPUnit_Util_Test::getLinesToBeCovered('NotExistingCoveredElementTest', 'testTwo');
}
/**
* @covers PHPUnit_Util_Test::getLinesToBeCovered
* @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed
* @covers PHPUnit_Util_Test::resolveElementToReflectionObjects
* @expectedException PHPUnit_Framework_CodeCoverageException
*/
public function testGetLinesToBeCovered4() {
PHPUnit_Util_Test::getLinesToBeCovered('NotExistingCoveredElementTest', 'testThree');
}
/**
* @covers PHPUnit_Util_Test::getLinesToBeCovered
* @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed
*/
public function testGetLinesToBeCoveredSkipsNonExistentMethods() {
$this
->assertSame(array(), PHPUnit_Util_Test::getLinesToBeCovered('NotExistingCoveredElementTest', 'methodDoesNotExist'));
}
/**
* @covers PHPUnit_Util_Test::getLinesToBeCovered
* @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed
* @expectedException PHPUnit_Framework_CodeCoverageException
*/
public function testTwoCoversDefaultClassAnnoationsAreNotAllowed() {
PHPUnit_Util_Test::getLinesToBeCovered('CoverageTwoDefaultClassAnnotations', 'testSomething');
}
/**
* @covers PHPUnit_Util_Test::getLinesToBeCovered
* @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed
*/
public function testFunctionParenthesesAreAllowed() {
$this
->assertSame(array(
TEST_FILES_PATH . 'CoveredFunction.php' => range(2, 4),
), PHPUnit_Util_Test::getLinesToBeCovered('CoverageFunctionParenthesesTest', 'testSomething'));
}
/**
* @covers PHPUnit_Util_Test::getLinesToBeCovered
* @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed
*/
public function testFunctionParenthesesAreAllowedWithWhitespace() {
$this
->assertSame(array(
TEST_FILES_PATH . 'CoveredFunction.php' => range(2, 4),
), PHPUnit_Util_Test::getLinesToBeCovered('CoverageFunctionParenthesesWhitespaceTest', 'testSomething'));
}
/**
* @covers PHPUnit_Util_Test::getLinesToBeCovered
* @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed
*/
public function testMethodParenthesesAreAllowed() {
$this
->assertSame(array(
TEST_FILES_PATH . 'CoveredClass.php' => range(31, 35),
), PHPUnit_Util_Test::getLinesToBeCovered('CoverageMethodParenthesesTest', 'testSomething'));
}
/**
* @covers PHPUnit_Util_Test::getLinesToBeCovered
* @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed
*/
public function testMethodParenthesesAreAllowedWithWhitespace() {
$this
->assertSame(array(
TEST_FILES_PATH . 'CoveredClass.php' => range(31, 35),
), PHPUnit_Util_Test::getLinesToBeCovered('CoverageMethodParenthesesWhitespaceTest', 'testSomething'));
}
/**
* @covers PHPUnit_Util_Test::getLinesToBeCovered
* @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed
*/
public function testNamespacedFunctionCanBeCoveredOrUsed() {
$this
->assertEquals(array(
TEST_FILES_PATH . 'NamespaceCoveredFunction.php' => range(4, 7),
), PHPUnit_Util_Test::getLinesToBeCovered('CoverageNamespacedFunctionTest', 'testFunc'));
}
public function getLinesToBeCoveredProvider() {
return array(
array(
'CoverageNoneTest',
array(),
),
array(
'CoverageClassExtendedTest',
array_merge(range(19, 36), range(2, 17)),
),
array(
'CoverageClassTest',
range(19, 36),
),
array(
'CoverageMethodTest',
range(31, 35),
),
array(
'CoverageMethodOneLineAnnotationTest',
range(31, 35),
),
array(
'CoverageNotPrivateTest',
array_merge(range(25, 29), range(31, 35)),
),
array(
'CoverageNotProtectedTest',
array_merge(range(21, 23), range(31, 35)),
),
array(
'CoverageNotPublicTest',
array_merge(range(21, 23), range(25, 29)),
),
array(
'CoveragePrivateTest',
range(21, 23),
),
array(
'CoverageProtectedTest',
range(25, 29),
),
array(
'CoveragePublicTest',
range(31, 35),
),
array(
'CoverageFunctionTest',
range(2, 4),
),
array(
'NamespaceCoverageClassExtendedTest',
array_merge(range(21, 38), range(4, 19)),
),
array(
'NamespaceCoverageClassTest',
range(21, 38),
),
array(
'NamespaceCoverageMethodTest',
range(33, 37),
),
array(
'NamespaceCoverageNotPrivateTest',
array_merge(range(27, 31), range(33, 37)),
),
array(
'NamespaceCoverageNotProtectedTest',
array_merge(range(23, 25), range(33, 37)),
),
array(
'NamespaceCoverageNotPublicTest',
array_merge(range(23, 25), range(27, 31)),
),
array(
'NamespaceCoveragePrivateTest',
range(23, 25),
),
array(
'NamespaceCoverageProtectedTest',
range(27, 31),
),
array(
'NamespaceCoveragePublicTest',
range(33, 37),
),
array(
'NamespaceCoverageCoversClassTest',
array_merge(range(23, 25), range(27, 31), range(33, 37), range(6, 8), range(10, 13), range(15, 18)),
),
array(
'NamespaceCoverageCoversClassPublicTest',
range(33, 37),
),
array(
'CoverageNothingTest',
false,
),
);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PHPUnit_Framework_Assert:: |
private static | property | ||
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_IsAnything matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_ArrayHasKey matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that an array has a specified key. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that an array does not have a specified key. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that an array has a specified subset. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a haystack that is stored in a static attribute of a class or an attribute of an object contains a needle. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a haystack that is stored in a static attribute of a class or an attribute of an object contains only values of a given type. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts the number of elements of an array, Countable or Traversable that is stored in an attribute. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a static attribute of a class or an attribute of an object is empty. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a variable is equal to an attribute of an object. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that an attribute is greater than another value. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that an attribute is greater than or equal to another value. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that an attribute is of a given type. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that an attribute is of a given type. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that an attribute is smaller than another value. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that an attribute is smaller than or equal to another value. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a haystack that is stored in a static attribute of a class or an attribute of an object does not contain a needle. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a haystack that is stored in a static attribute of a class or an attribute of an object does not contain only values of a given type. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts the number of elements of an array, Countable or Traversable that is stored in an attribute. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a static attribute of a class or an attribute of an object is not empty. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a variable is not equal to an attribute of an object. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that an attribute is of a given type. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that an attribute is of a given type. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a variable and an attribute of an object do not have the same type and value. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a variable and an attribute of an object have the same type and value. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a class has a specified attribute. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a class has a specified static attribute. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a class does not have a specified attribute. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a class does not have a specified static attribute. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a haystack contains a needle. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a haystack contains only values of a given type. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a haystack contains only instances of a given classname | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts the number of elements of an array, Countable or Traversable. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a variable is empty. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that two variables are equal. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a hierarchy of DOMElements matches. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a condition is false. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that the contents of one file is equal to the contents of another file. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a file exists. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that the contents of one file is not equal to the contents of another file. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a file does not exist. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a value is greater than another value. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a value is greater than or equal to another value. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a variable is of a given type. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a variable is of a given type. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a string is a valid JSON string. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that two JSON files are equal. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that two JSON files are not equal. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that the generated JSON encoded object and the content of the given file are equal. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that two given JSON encoded objects or arrays are equal. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that the generated JSON encoded object and the content of the given file are not equal. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that two given JSON encoded objects or arrays are not equal. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a value is smaller than another value. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a value is smaller than or equal to another value. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a haystack does not contain a needle. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a haystack does not contain only values of a given type. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts the number of elements of an array, Countable or Traversable. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a variable is not empty. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that two variables are not equal. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a condition is not false. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a variable is not of a given type. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a variable is not of a given type. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a variable is not null. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a string does not match a given regular expression. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that two variables do not have the same type and value. Used on objects, it asserts that two variables do not reference the same object. | |
PHPUnit_Framework_Assert:: |
public static | function | Assert that the size of two arrays (or `Countable` or `Traversable` objects) is not the same. | |
PHPUnit_Framework_Assert:: |
public static | function | This assertion is the exact opposite of assertTag(). | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a condition is not true. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a variable is null. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that an object has a specified attribute. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that an object does not have a specified attribute. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a string matches a given regular expression. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that two variables have the same type and value. Used on objects, it asserts that two variables reference the same object. | |
PHPUnit_Framework_Assert:: |
public static | function | Assert that the size of two arrays (or `Countable` or `Traversable` objects) is the same. | |
PHPUnit_Framework_Assert:: |
public static | function | Assert the presence, absence, or count of elements in a document matching the CSS $selector, regardless of the contents of those elements. | |
PHPUnit_Framework_Assert:: |
public static | function | assertSelectEquals("#binder .name", "Chuck", true, $xml); // any? assertSelectEquals("#binder .name", "Chuck", false, $xml); // none? | |
PHPUnit_Framework_Assert:: |
public static | function | assertSelectRegExp("#binder .name", "/Mike|Derek/", true, $xml); // any? assertSelectRegExp("#binder .name", "/Mike|Derek/", 3, $xml); // 3? | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a string ends not with a given suffix. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a string ends with a given suffix. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that the contents of a string is equal to the contents of a file. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a string matches a given format string. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a string matches a given format file. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that the contents of a string is not equal to the contents of a file. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a string does not match a given format string. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a string does not match a given format string. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a string starts not with a given prefix. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a string starts with a given prefix. | |
PHPUnit_Framework_Assert:: |
public static | function | Evaluate an HTML or XML string and assert its structure and/or contents. | |
PHPUnit_Framework_Assert:: |
public static | function | Evaluates a PHPUnit_Framework_Constraint matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that a condition is true. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that two XML files are equal. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that two XML files are not equal. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that two XML documents are equal. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that two XML documents are equal. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that two XML documents are not equal. | |
PHPUnit_Framework_Assert:: |
public static | function | Asserts that two XML documents are not equal. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_Attribute matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_IsEqual matcher object that is wrapped in a PHPUnit_Framework_Constraint_Attribute matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_Callback matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_ClassHasAttribute matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_ClassHasStaticAttribute matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_TraversableContains matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_TraversableContainsOnly matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_TraversableContainsOnly matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_Count matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_IsEqual matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Fails a test with the given message. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_FileExists matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Return the current assertion count. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns the value of an object's attribute. This also works for attributes that are declared protected or private. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns the value of a static attribute. This also works for attributes that are declared protected or private. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_GreaterThan matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_Or matcher object that wraps a PHPUnit_Framework_Constraint_IsEqual and a PHPUnit_Framework_Constraint_GreaterThan matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_IsIdentical matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_IsEmpty matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_IsFalse matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_IsInstanceOf matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_IsJson matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_IsNull matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_IsTrue matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_IsType matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_LessThan matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_Or matcher object that wraps a PHPUnit_Framework_Constraint_IsEqual and a PHPUnit_Framework_Constraint_LessThan matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_And matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_Not matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_Or matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_Xor matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Mark the test as incomplete. | |
PHPUnit_Framework_Assert:: |
public static | function | Mark the test as skipped. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_StringMatches matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_PCREMatch matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_ObjectHasAttribute matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns the value of an attribute of a class or an object. This also works for attributes that are declared protected or private. | |
PHPUnit_Framework_Assert:: |
public static | function | Reset the assertion counter. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_StringContains matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_StringEndsWith matcher object. | |
PHPUnit_Framework_Assert:: |
public static | function | Returns a PHPUnit_Framework_Constraint_StringStartsWith matcher object. | |
PHPUnit_Framework_TestCase:: |
protected | property | Enable or disable the backup and restoration of the $GLOBALS array. Overwrite this attribute in a child class of TestCase. Setting this attribute in setUp() has no effect! | 3 |
PHPUnit_Framework_TestCase:: |
protected | property | 1 | |
PHPUnit_Framework_TestCase:: |
protected | property | Enable or disable the backup and restoration of static attributes. Overwrite this attribute in a child class of TestCase. Setting this attribute in setUp() has no effect! | 3 |
PHPUnit_Framework_TestCase:: |
protected | property | ||
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | The name of the expected Exception. | |
PHPUnit_Framework_TestCase:: |
private | property | The code of the expected Exception. | |
PHPUnit_Framework_TestCase:: |
private | property | The message of the expected Exception. | |
PHPUnit_Framework_TestCase:: |
private | property | The regex pattern to validate the expected Exception message. | |
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | Whether or not this test is running in a separate PHP process. | |
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | The name of the test case. | |
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
protected | property | Whether or not this test should preserve the global state when running in a separate PHP process. | 1 |
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | 3 | |
PHPUnit_Framework_TestCase:: |
protected | property | Whether or not this test is to be run in a separate PHP process. | 3 |
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | ||
PHPUnit_Framework_TestCase:: |
private | property | 3 | |
PHPUnit_Framework_TestCase:: |
public | function | Adds a value to the assertion counter. | |
PHPUnit_Framework_TestCase:: |
public static | function | Returns a matcher that matches when the method is executed zero or more times. | |
PHPUnit_Framework_TestCase:: |
protected | function | Performs assertions shared by all tests of a test case. | 6 |
PHPUnit_Framework_TestCase:: |
protected | function | Performs assertions shared by all tests of a test case. | 6 |
PHPUnit_Framework_TestCase:: |
public static | function | Returns a matcher that matches when the method is executed at the given index. | |
PHPUnit_Framework_TestCase:: |
public static | function | Returns a matcher that matches when the method is executed at least N times. | |
PHPUnit_Framework_TestCase:: |
public static | function | Returns a matcher that matches when the method is executed at least once. | |
PHPUnit_Framework_TestCase:: |
public static | function | Returns a matcher that matches when the method is executed at most N times. | |
PHPUnit_Framework_TestCase:: |
protected | function | @since Method available since Release 3.6.0 | |
PHPUnit_Framework_TestCase:: |
private | function | ||
PHPUnit_Framework_TestCase:: |
private | function | ||
PHPUnit_Framework_TestCase:: |
public | function | Counts the number of test cases executed by run(TestResult result). | |
PHPUnit_Framework_TestCase:: |
private | function | ||
PHPUnit_Framework_TestCase:: |
protected | function | Creates a default TestResult object. | |
PHPUnit_Framework_TestCase:: |
public static | function | Returns a matcher that matches when the method is executed exactly $count times. | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 3.6.0 | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 3.6.0 | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 3.6.0 | |
PHPUnit_Framework_TestCase:: |
public | function | Returns the annotations for this test. | |
PHPUnit_Framework_TestCase:: |
protected | function | Gets the data set description of a TestCase. | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 3.2.0 | |
PHPUnit_Framework_TestCase:: |
public | function | Returns a mock object for the specified class. | |
PHPUnit_Framework_TestCase:: |
public | function | Returns a builder object to create mock objects using a fluent interface. | |
PHPUnit_Framework_TestCase:: |
protected | function | Mocks the specified class and returns the name of the mocked class. | |
PHPUnit_Framework_TestCase:: |
public | function | Returns a mock object for the specified abstract class with all abstract methods of the class mocked. Concrete methods are not mocked by default. To mock concrete methods, use the 7th parameter ($mockedMethods). | |
PHPUnit_Framework_TestCase:: |
public | function | Returns a mock object for the specified trait with all abstract methods of the trait mocked. Concrete methods to mock can be specified with the `$mockedMethods` parameter. | |
PHPUnit_Framework_TestCase:: |
protected | function | Returns a mock object based on the given WSDL file. | |
PHPUnit_Framework_TestCase:: |
protected | function | Get the mock object generator, creating it if it doesn't exist. | |
PHPUnit_Framework_TestCase:: |
public | function | Gets the name of a TestCase. | |
PHPUnit_Framework_TestCase:: |
public | function | Returns the number of assertions performed by this test. | |
PHPUnit_Framework_TestCase:: |
protected | function | Returns an object for the specified trait. | |
PHPUnit_Framework_TestCase:: |
private | function | @since Method available since Release 4.5.0 | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 3.4.0 | |
PHPUnit_Framework_TestCase:: |
public | function | Returns the size of the test. | |
PHPUnit_Framework_TestCase:: |
public | function | Returns the status of this test. | |
PHPUnit_Framework_TestCase:: |
public | function | Returns the status message of this test. | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 3.5.7 | |
PHPUnit_Framework_TestCase:: |
protected | function | @since Method available since Release 3.5.4 | |
PHPUnit_Framework_TestCase:: |
public | function | Returns true if the tests has dependencies | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 4.3.3 | |
PHPUnit_Framework_TestCase:: |
public | function | Returns whether or not this test has failed. | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 3.6.0 | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 3.6.5 | |
PHPUnit_Framework_TestCase:: |
protected | function | This method is a wrapper for the ini_set() function that automatically resets the modified php.ini setting to its original value after the test is run. | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 4.3.0 | |
PHPUnit_Framework_TestCase:: |
public static | function | Returns a matcher that matches when the method is never executed. | |
PHPUnit_Framework_TestCase:: |
public static | function | Returns a matcher that matches when the method is executed exactly once. | |
PHPUnit_Framework_TestCase:: |
public static | function | @since Method available since Release 3.0.0 | |
PHPUnit_Framework_TestCase:: |
protected | function | This method is called when a test method did not execute successfully. | 1 |
PHPUnit_Framework_TestCase:: |
protected | function | Performs custom preparations on the process isolation template. | |
PHPUnit_Framework_TestCase:: |
protected | function | @since Method available since Release 4.5.0 | |
PHPUnit_Framework_TestCase:: |
private | function | ||
PHPUnit_Framework_TestCase:: |
public static | function | @since Method available since Release 3.3.0 | |
PHPUnit_Framework_TestCase:: |
public static | function | @since Method available since Release 3.3.0 | |
PHPUnit_Framework_TestCase:: |
public static | function | Returns the current object. | |
PHPUnit_Framework_TestCase:: |
public static | function | @since Method available since Release 3.0.0 | |
PHPUnit_Framework_TestCase:: |
public static | function | @since Method available since Release 3.6.0 | |
PHPUnit_Framework_TestCase:: |
public | function |
Runs the test case and collects the results in a TestResult object.
If no TestResult object is passed a new one will be created. Overrides PHPUnit_Framework_Test:: |
|
PHPUnit_Framework_TestCase:: |
public | function | Runs the bare test sequence. | |
PHPUnit_Framework_TestCase:: |
protected | function | Override to run the test and assert its state. | 9 |
PHPUnit_Framework_TestCase:: |
public | function | Calling this method in setUp() has no effect! | |
PHPUnit_Framework_TestCase:: |
public | function | Calling this method in setUp() has no effect! | |
PHPUnit_Framework_TestCase:: |
public | function | Sets the dependencies of a TestCase. | |
PHPUnit_Framework_TestCase:: |
public | function | Sets | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 4.6.0 | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 3.2.0 | |
PHPUnit_Framework_TestCase:: |
protected | function | @since Method available since Release 3.4.0 | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 4.3.0 | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 3.4.0 | |
PHPUnit_Framework_TestCase:: |
protected | function | This method is a wrapper for the setlocale() function that automatically resets the locale to its original value after the test is run. | |
PHPUnit_Framework_TestCase:: |
public | function | Sets the name of a TestCase. | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 3.6.0 | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 3.4.0 | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 3.4.0 | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 3.4.0 | |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 3.6.0 | |
PHPUnit_Framework_TestCase:: |
protected | function | Sets up the fixture, for example, open a network connection. This method is called before a test is executed. | 40 |
PHPUnit_Framework_TestCase:: |
public static | function | This method is called before the first test of this test class is run. | 2 |
PHPUnit_Framework_TestCase:: |
public | function | @since Method available since Release 3.4.0 | |
PHPUnit_Framework_TestCase:: |
protected | function | @since Method available since Release 3.4.0 | |
PHPUnit_Framework_TestCase:: |
private | function | ||
PHPUnit_Framework_TestCase:: |
private | function | @since Method available since Release 4.2.0 | |
PHPUnit_Framework_TestCase:: |
private | function | @since Method available since Release 4.2.0 | |
PHPUnit_Framework_TestCase:: |
protected | function | Tears down the fixture, for example, close a network connection. This method is called after a test is executed. | 10 |
PHPUnit_Framework_TestCase:: |
public static | function | This method is called after the last test of this test class is run. | 2 |
PHPUnit_Framework_TestCase:: |
public static | function | @since Method available since Release 3.1.0 | |
PHPUnit_Framework_TestCase:: |
public | function |
Returns a string representation of the test case. Overrides PHPUnit_Framework_SelfDescribing:: |
3 |
PHPUnit_Framework_TestCase:: |
protected | function | Verifies the mock object expectations. | |
PHPUnit_Framework_TestCase:: |
public | function | Constructs a test case with the given name. | 4 |
Util_TestTest:: |
public | function | ||
Util_TestTest:: |
public | function | @depends Foo @depends ほげ @todo Remove fixture from test class | |
Util_TestTest:: |
public | function | @depends Bar | |
Util_TestTest:: |
public | function | ||
Util_TestTest:: |
public | function | ||
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getLinesToBeCovered @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getLinesToBeCovered @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getExpectedException @todo Split up in separate tests | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getExpectedException | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getLinesToBeCovered @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed @covers PHPUnit_Util_Test::resolveElementToReflectionObjects @dataProvider getLinesToBeCoveredProvider | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getLinesToBeCovered @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed @covers PHPUnit_Util_Test::resolveElementToReflectionObjects @expectedException PHPUnit_Framework_CodeCoverageException | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getLinesToBeCovered @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed @covers PHPUnit_Util_Test::resolveElementToReflectionObjects @expectedException PHPUnit_Framework_CodeCoverageException | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getLinesToBeCovered @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed @covers PHPUnit_Util_Test::resolveElementToReflectionObjects @expectedException PHPUnit_Framework_CodeCoverageException | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getLinesToBeCovered @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getMissingRequirements @dataProvider missingRequirementsProvider | |
Util_TestTest:: |
public | function | @coversNothing @todo This test does not really test functionality of PHPUnit_Util_Test | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getRequirements @dataProvider requirementsProvider | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getRequirements | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getLinesToBeCovered @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getLinesToBeCovered @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getLinesToBeCovered @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getDependencies @todo Not sure what this test tests (name is misleading at least) | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getDependencies | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getDataFromTestWithAnnotation | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getDataFromTestWithAnnotation | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getDataFromTestWithAnnotation | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getDataFromTestWithAnnotation | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getDataFromTestWithAnnotation | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getDataFromTestWithAnnotation | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getDataFromTestWithAnnotation | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getDataFromTestWithAnnotation | |
Util_TestTest:: |
public | function | @covers PHPUnit_Util_Test::getLinesToBeCovered @covers PHPUnit_Util_Test::getLinesToBeCoveredOrUsed @expectedException PHPUnit_Framework_CodeCoverageException |