コード例 #1
0
ファイル: DataTests.php プロジェクト: robinduckett/Dwoo
 /**
  * @expectedException Dwoo_Exception
  */
 public function testUnassign()
 {
     $data = new Dwoo_Data();
     $data->variable = 'val';
     $this->assertEquals(true, isset($data->variable));
     $data->unassign('variable');
     $data->get('variable');
 }