bouiboui\Tissue\TissueTest::testPartialIssueOne PHP Method

testPartialIssueOne() public method

Tests what an issue created with partial information looks like (1/3)
public testPartialIssueOne ( )
    public function testPartialIssueOne()
    {
        try {
            throw new \ErrorException('1/3 A partial error.');
        } catch (\ErrorException $e) {
            Tissue::setConfigPath(TEST_CONFIG_PATH);
            Tissue::create($e->getMessage(), $e->getCode(), $e->getSeverity(), $e->getFile());
        }
    }