Example #1
0
 /**
  * @covers ::offsetSet
  */
 public function testOffsetSet()
 {
     $configuration = new Configuration();
     $this->assertNull($configuration->offsetGet('new'));
     $configuration->offsetSet('new', 'value');
     $this->assertEquals('value', $configuration->offsetGet('new'));
 }