public function Framework_MockObjectTest::testMockedMethodIsNotCalledWhenMethodSpecifiedDirectlyWithParameter in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpunit/phpunit-mock-objects/tests/MockObjectTest.php \Framework_MockObjectTest::testMockedMethodIsNotCalledWhenMethodSpecifiedDirectlyWithParameter()
File
- vendor/
phpunit/ phpunit-mock-objects/ tests/ MockObjectTest.php, line 41
Class
- Framework_MockObjectTest
- @since Class available since Release 3.0.0
Code
public function testMockedMethodIsNotCalledWhenMethodSpecifiedDirectlyWithParameter() {
$mock = $this
->getMock('SomeClass');
$mock
->method('doSomethingElse')
->with('someArg');
}