/**
  * @expectedException \InvalidArgumentException
  * @expectedExceptionCode 1
  */
 public function testGetNotExistingService()
 {
     $reg = new ExecutorRegistry();
     $reg->get('foo');
 }