Пример #1
0
 public function testShouldGetPropertiesPassedInConstructor()
 {
     $event = new ExtendedConsoleEvent($this->commandMock, $this->inputMock, $this->outputMock);
     $this->assertSame($this->commandMock, $event->getCommand());
     $this->assertSame($this->inputMock, $event->getInput());
     $this->assertSame($this->outputMock, $event->getOutput());
 }