PopTest\ConfigTest::testConfigException PHP Method

testConfigException() public method

public testConfigException ( )
    public function testConfigException()
    {
        $this->setExpectedException('Exception');
        $c = new Config(array('data' => 123));
        $c->data = 456;
    }