PhpBench\Tests\Unit\Environment\InformationTest::testUnset PHP Метод

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

It should throw an Exception if unset is called.
public testUnset ( )
    public function testUnset()
    {
        $information = new Information('hello', []);
        unset($information['foo']);
    }