Exemplo n.º 1
0
 public function testDelete()
 {
     $this->testInsert();
     $model = new TestModel(1);
     $model->Delete();
     $model = new TestModel(2);
     $model->FetchInto();
     $this->assertEquals('Hello', $model->title);
     $this->setExpectedException('phalanx\\data\\ModelException');
     $model = new TestModel(1);
     $model->FetchInto();
 }