Esempio n. 1
0
 /**
  * @requires PHP 5.4
  */
 public function testModelMethods()
 {
     $this->assertTrue(is_array(Robot::with('Parts')));
     $this->assertTrue(is_object(Robot::findFirstById(1)->load('Parts')));
     $this->assertTrue(is_object(Robot::findFirstWith('Parts', array('id = 1'))));
 }