Ejemplo n.º 1
0
 /**
  * Test that the backwards compatibility of the format property works.
  */
 public function testFormatCompat()
 {
     $cli = new Cli();
     $format = $cli->format;
     $this->assertErrorNumber(E_USER_DEPRECATED);
     $this->assertSame($cli->getFormatOutput(), $format);
     $this->clearErrors();
     $format2 = !$format;
     $cli->format = $format2;
     $this->assertErrorNumber(E_USER_DEPRECATED);
     $this->assertSame($format2, $cli->getFormatOutput());
 }