Example #1
0
 /**
  * testFindSubprojects method
  *
  * @return void
  */
 public function testFindSubprojects()
 {
     $data = $this->Project->findSubprojects(1);
     $this->assertCount(3, $data);
     $data = $this->Project->findSubprojects(5);
     $this->assertCount(0, $data);
 }