コード例 #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());
 }