public function testCanGetData()
 {
     $b = new ServiceBuilder($this->arrayData);
     $this->assertEquals($this->arrayData['michael.mock'], $b->getData('michael.mock'));
     $this->assertNull($b->getData('ewofweoweofe'));
 }