public function testGetOptions()
 {
     $this->stateMock->expects($this->never())->method('setAreaCode')->with(FrontNameResolver::AREA_CODE);
     $this->command = new IndexerShowModeCommand($this->objectManagerFactory);
     $optionsList = $this->command->getInputList();
     $this->assertSame(1, sizeof($optionsList));
     $this->assertSame('index', $optionsList[0]->getName());
 }
 public function testGetOptions()
 {
     $this->command = new IndexerShowModeCommand($this->objectManagerFactory);
     $optionsList = $this->command->getInputList();
     $this->assertSame(2, sizeof($optionsList));
     $this->assertSame('all', $optionsList[0]->getName());
     $this->assertSame('index', $optionsList[1]->getName());
 }