SebastianBergmann\PHPLOC\SingleTest::testPrintPartialRow PHP Method

testPrintPartialRow() public method

public testPrintPartialRow ( )
    public function testPrintPartialRow()
    {
        $count = $this->sample_row;
        unset($count['llocByNof']);
        try {
            ob_start();
            $this->single->printResult('php://output', $count);
        } finally {
            ob_end_clean();
        }
        $this->fail('No exception was raised for malformed input var');
    }