/**
  * Create mock for gateway command object
  */
 private function initCommandMock()
 {
     $this->command = $this->getMockBuilder(GatewayCommand::class)->disableOriginalConstructor()->setMethods(['execute'])->getMock();
     $this->command->expects(static::once())->method('execute')->willReturn([]);
 }