public function Framework_MockObject_Invocation_ObjectTest::testConstructorRequiresClassAndMethodAndParametersAndObject in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpunit/phpunit-mock-objects/tests/MockObject/Invocation/ObjectTest.php \Framework_MockObject_Invocation_ObjectTest::testConstructorRequiresClassAndMethodAndParametersAndObject()
File
- vendor/
phpunit/ phpunit-mock-objects/ tests/ MockObject/ Invocation/ ObjectTest.php, line 5
Class
Code
public function testConstructorRequiresClassAndMethodAndParametersAndObject() {
new PHPUnit_Framework_MockObject_Invocation_Object('FooClass', 'FooMethod', array(
'an_argument',
), new StdClass());
}