PHP Interface PHPUnit_Extensions_Database_DataSet_ITable, qcodo

Author: Mike Lively ([email protected])
Afficher le fichier Open project: qcodo/qcodo Interface Usage Examples

Méthodes publiques

Méthode Description
assertEquals ( PHPUnit_Extensions_Database_DataSet_ITable $other ) Asserts that the given table matches this table.
getRow ( integer $row ) : array Returns the an associative array keyed by columns for the given row.
getRowCount ( ) : integer Returns the number of rows in this table.
getTableMetaData ( ) : PHPUnit_Extensions_Database_DataSet_ITableMetaData Returns the table's meta data.
getValue ( integer $row, integer $column ) Returns the value for the given column on the given row.

Method Details

assertEquals() public méthode

Asserts that the given table matches this table.
public assertEquals ( PHPUnit_Extensions_Database_DataSet_ITable $other )
$other PHPUnit_Extensions_Database_DataSet_ITable

getRow() public méthode

Returns the an associative array keyed by columns for the given row.
public getRow ( integer $row ) : array
$row integer
Résultat array

getRowCount() public méthode

Returns the number of rows in this table.
public getRowCount ( ) : integer
Résultat integer

getTableMetaData() public méthode

Returns the table's meta data.
public getTableMetaData ( ) : PHPUnit_Extensions_Database_DataSet_ITableMetaData
Résultat PHPUnit_Extensions_Database_DataSet_ITableMetaData

getValue() public méthode

Returns the value for the given column on the given row.
public getValue ( integer $row, integer $column )
$row integer
$column integer