PhpBench\Tests\Unit\Report\Generator\Table\RowTest::testGetNotExisting PHP Метод

testGetNotExisting() публичный Метод

It should throw an exception if a non-existing offset is requested.
public testGetNotExisting ( )
    public function testGetNotExisting()
    {
        $row = new Row(['bar' => 'boo']);
        $row['foo'];
    }