예제 #1
0
파일: TestCommon.php 프로젝트: stunti/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());
 }