Ejemplo n.º 1
0
 public function testSetGetInteractive()
 {
     $input = new ArrayInput(array());
     $this->assertTrue($input->isInteractive(), '->isInteractive() returns whether the input should be interactive or not');
     $input->setInteractive(false);
     $this->assertFalse($input->isInteractive(), '->setInteractive() changes the interactive flag');
 }