コード例 #1
0
ファイル: ViewModelTest.php プロジェクト: haoyanfei/zf2
 public function testCanUnsetVariable()
 {
     $model = new ViewModel(array('foo' => 'bar'));
     $model->__unset('foo');
     $this->assertEquals(array(), $model->getVariables());
 }