/**
  * @test
  */
 public function setConfigurationValueAndCheckReturnedValueIsCorresponding()
 {
     $expected = 'bar';
     $this->fixture->set('foo', $expected);
     $this->assertSame($expected, $this->fixture->get('foo'));
 }