setDbConnection($conn); } function test_count() { $finder = DepartmentRecord::finder(); $count = $finder->count('"order" > ?', 2); $this->assertTrue($count > 0); } function test_count_zero() { $finder = DepartmentRecord::finder(); $count = $finder->count('"order" > ?', 11); $this->assertEqual($count,0); } function test_count_without_parameter() { $finder = DepartmentRecord::finder(); $this->assertEqual($finder->count(), 8); } } ?>