OrnoTest\ContainerTest::testCallThrowsRuntimeExceptionIfParameterResolutionFails PHP Метод

testCallThrowsRuntimeExceptionIfParameterResolutionFails() публичный Метод

    public function testCallThrowsRuntimeExceptionIfParameterResolutionFails()
    {
        $c = new Container();
        $c->call(function (array $foo) {
            return implode(',', $foo);
        });
        $this->assertFalse(true);
    }
ContainerTest