Sanpi\Behatch\Context\TableContext::iShouldSeeRowsInTheNthTable PHP Метод

iShouldSeeRowsInTheNthTable() публичный Метод

Checks that the specified table contains the specified number of rows in its body
public iShouldSeeRowsInTheNthTable ( $count, $index, $table )
    public function iShouldSeeRowsInTheNthTable($count, $index, $table)
    {
        $actual = $this->countElements('tbody tr', $index, $table);
        $this->assertEquals($count, $actual);
    }