コード例 #1
0
ファイル: RegistryTest.php プロジェクト: brickoo/components
 /** @covers Brickoo\Component\Common\Registry::isReadOnly */
 public function testReadonlyMode()
 {
     $this->assertFalse($this->registry->isReadOnly());
     $this->registry->setReadOnly(true);
     $this->assertTrue($this->registry->isReadOnly());
 }