Example #1
0
 public function testFindAllNotInProject()
 {
     // Find all users not in project 'CrashRpt Tests'
     $users = User::findAllNotInProject(1);
     // Should be two such users (devel and guest)
     $this->assertTrue(count($users) == 2);
 }