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

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

    public function testContainerDoesntAcceptInvalidConfigType()
    {
        $this->setExpectedException('InvalidArgumentException');
        $c = new Container(null, new \stdClass());
    }
ContainerTest