/**
  * @test
  */
 public function configurationCanBeReturnedViaMagicGetter()
 {
     $baseType = new NodeType('Neos.ContentRepository:Base', array(), array('someKey' => 'someValue'));
     $this->assertTrue($baseType->hasSomeKey());
     $this->assertSame('someValue', $baseType->getSomeKey());
 }