public function testGetConfigurationOption()
 {
     $expectedConfiguration = array('foo' => 'value');
     $this->expectGetRawConfiguration($expectedConfiguration, 4);
     $this->assertEquals('value', $this->context->getOption('foo'));
     $this->assertEquals('default', $this->context->getOption('unknown', 'default'));
     $this->assertNull($this->context->getOption('unknown'));
 }