OrnoTest\ContainerTest::testCallThrowsExceptionWhenCannotResolveCallable PHP Method

testCallThrowsExceptionWhenCannotResolveCallable() public method

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