예제 #1
0
 public function testGetReadOnly()
 {
     $list = new CList(null, true);
     $this->assertEquals(true, $list->getReadOnly(), 'List is not read-only');
     $list = new CList(null, false);
     $this->assertEquals(false, $list->getReadOnly(), 'List is read-only');
 }