Exemplo n.º 1
0
 public function testSuccessfulQueryWithTMI()
 {
     $model = new TestModel();
     $model->title = 'Title';
     $model->description = 'Desc';
     $model->value = 'Value';
     $model->Insert();
     $model = new TestModel(1);
     $model->title = 'Title2';
     $model->Update();
     $data = $model->Fetch();
     $this->assertEquals('Title2', $data->title);
 }