Ejemplo n.º 1
0
 /**
  * Test some basic color formatting.
  */
 public function testColors()
 {
     $log = $this->createTestLogger();
     $log->setFormatOutput(true)->setDateFormat('');
     $log->success('y')->error('n');
     $this->expectOutputString(Cli::greenText('y') . "\n" . Cli::redText('n') . "\n");
 }