OrnoTest\ContainerTest::testContainerDoesntAcceptInvalidConfigType PHP Method

testContainerDoesntAcceptInvalidConfigType() public method

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