Example #1
0
 /**
  * @covers ::offsetUnset
  */
 public function testOffsetUnset()
 {
     $configuration = new Configuration();
     $this->assertNotNull($configuration->offsetGet('phpunit'));
     $configuration->offsetUnset('phpunit');
     $this->assertNull($configuration->offsetGet('phpunit'));
 }