Exemplo n.º 1
0
 /**
  * Test background with foreground colors...
  *
  * @depends test_class_defined
  */
 public function test_foreground_with_background_colors()
 {
     // Bright foreground camel case
     $this->assertEquals("", ansi::Black_on_white());
     $this->assertEquals("", ansi::Red_on_white());
     $this->assertEquals("", ansi::Green_on_yellow());
     // Bright foreground all caps
     $this->assertEquals("", ansi::BLACK_ON_WHITE());
     $this->assertEquals("", ansi::RED_ON_WHITE());
     $this->assertEquals("", ansi::GREEN_ON_YELLOW());
     // Normal foreground camel case
     $this->assertEquals("", ansi::black_on_white());
     $this->assertEquals("", ansi::red_on_white());
     $this->assertEquals("", ansi::green_on_yellow());
 }