PopTest\Db\PreparedTest::testFindAll PHP Méthode

testFindAll() public méthode

public testFindAll ( )
    public function testFindAll()
    {
        $r = PreparedUsers::findAll('id RAND()', array('email' => '[email protected]'));
        $r = PreparedUsers::findAll('id, username DESC', null, 4);
        $r = PreparedUsers::findAll('id ASC');
        $this->assertEquals(8, count($r->rows));
        $this->assertEquals(0, $r->numRows());
        $this->assertEquals(5, $r->numFields());
    }