示例#1
0
文件: TestCommon.php 项目: rexmac/zf2
 public function testReverseColor()
 {
     $this->_object->setForeColor(11);
     $this->_object->setBackgroundColor(111);
     $this->_object->setReverseColor();
     $this->assertSame(111, $this->_object->getForeColor());
     $this->assertSame(11, $this->_object->getBackgroundColor());
 }