Exemplo n.º 1
0
 public function testBindableModel()
 {
     $properties = array('variable' => 'value', 'othervariable' => 'othervalue');
     include_once APP_DIR . '/model/SampleModel.php';
     $sample = new SampleModel();
     $sample->bind($properties);
     $this->assertEqual($sample->variable, 'value');
     $this->assertEqual($sample->othervariable, 'othervalue');
 }