OrnoTest\ContainerTest::testCallThrowsExceptionWhenCannotResolveCallable PHP 메소드

testCallThrowsExceptionWhenCannotResolveCallable() 공개 메소드

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