public function testSetService()
 {
     $service = new stdClass();
     $this->_sut->set('x', $service);
     $this->assertSame($service, $this->_sut->get('x'));
 }