Exemplo n.º 1
0
 public function testGetSetVerbose()
 {
     $shell = new Magento_Shell(false);
     $this->assertFalse($shell->getVerbose());
     $shell->setVerbose(true);
     $this->assertTrue($shell->getVerbose());
     $shell->setVerbose(false);
     $this->assertFalse($shell->getVerbose());
 }