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

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

    public function testCallThrowsExceptionWhenCannotResolveCallable()
    {
        $this->setExpectedException('RuntimeException');
        $c = new Container();
        $c->call('hello');
    }
ContainerTest