Esempio n. 1
0
 function testStudents()
 {
     $x = new Consultation(1);
     $y = $x->students();
     $this->assertType('array', $y);
     $this->assertEquals(1, count($y));
     $z = array_shift($y);
     $this->assertType('Student', $z);
     $this->assertEquals(1, $z->id);
 }