public function setUp()
 {
     $this->registry = $this->prophesize(RegistryInterface::class);
     $command = new DebugResourceCommand($this->registry->reveal());
     $this->tester = new CommandTester($command);
 }