ActiveRecordFinderTest::testFindBySQL_returns_zero_records PHP Method

testFindBySQL_returns_zero_records() public method

    function testFindBySQL_returns_zero_records()
    {
        $department = DepartmentRecord::finder()->find('department_id > ?', 15);
        $this->assertNull($department);
    }