예제 #1
0
파일: FileTest.php 프로젝트: jsnshrmn/Suma
 public function testDefaultDecorators()
 {
     $this->element->clearDecorators();
     $this->assertEquals(array(), $this->element->getDecorators());
     $this->element->setDisableLoadDefaultDecorators(true);
     $this->element->loadDefaultDecorators();
     $this->assertEquals(array(), $this->element->getDecorators());
     $this->element->setDisableLoadDefaultDecorators(false);
     $this->element->loadDefaultDecorators();
     $this->assertNotEquals(array(), $this->element->getDecorators());
 }