Zephir\Test\ConfigExceptionTest::testConstruct PHP Method

testConstruct() public method

Test __contruct method.
public testConstruct ( )
    public function testConstruct()
    {
        $configException = new ConfigException('foo', 25);
        $this->assertSame($configException->getCode(), 25);
    }
ConfigExceptionTest