Home
last modified time | relevance | path

Searched refs:testArgument (Results 1 – 1 of 1) sorted by relevance

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestCase.php2443 foreach ($testArguments as $testArgument) {
2444 if ($testArgument instanceof PHPUnit_Framework_MockObject_MockObject) {
2445 if ($this->isCloneable($testArgument)) {
2446 $testArgument = clone $testArgument;
2449 $this->registerMockObject($testArgument);
2450 } elseif (is_array($testArgument) && !in_array($testArgument, $visited, true)) {
2451 $visited[] = $testArgument;
2454 $testArgument,
2472 * @param PHPUnit_Framework_MockObject_MockObject $testArgument
2476 private function isCloneable(PHPUnit_Framework_MockObject_MockObject $testArgument) argument
[all …]