PHP Class PHPUnit_Extensions_Database_DataSet_QueryTable, qcodo

Inheritance: extends PHPUnit_Extensions_Database_DataSet_AbstractTable
Show file Open project: qcodo/qcodo Class Usage Examples

Protected Properties

Property Type Description
$databaseConnection PHPUnit_Extensions_Database_DB_IDatabaseConnection
$query string
$tableName string

Public Methods

Method Description
__construct ( $tableName, string $query, PHPUnit_Extensions_Database_DB_IDatabaseConnection $databaseConnection ) Creates a new database query table object.
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.

Protected Methods

Method Description
createTableMetaData ( )
loadData ( )

Method Details

__construct() public method

Creates a new database query table object.
public __construct ( $tableName, string $query, PHPUnit_Extensions_Database_DB_IDatabaseConnection $databaseConnection )
$query string
$databaseConnection PHPUnit_Extensions_Database_DB_IDatabaseConnection

assertEquals() public method

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

createTableMetaData() protected method

protected createTableMetaData ( )

getRow() public method

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

getRowCount() public method

Returns the number of rows in this table.
public getRowCount ( ) : integer
return integer

getTableMetaData() public method

Returns the table's meta data.
public getTableMetaData ( ) : PHPUnit_Extensions_Database_DataSet_ITableMetaData
return PHPUnit_Extensions_Database_DataSet_ITableMetaData

getValue() public method

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

loadData() protected method

protected loadData ( )

Property Details

$databaseConnection protected property

protected PHPUnit_Extensions_Database_DB_IDatabaseConnection $databaseConnection
return PHPUnit_Extensions_Database_DB_IDatabaseConnection

$query protected property

protected string $query
return string

$tableName protected property

protected string $tableName
return string