Beispiel #1
0
 public function testGetRowLine()
 {
     $table = new TableNode(array(5 => array('username', 'password'), 10 => array('everzet', 'qwerty'), 13 => array('antono', 'pa$sword')));
     $this->assertEquals(5, $table->getRowLine(0));
     $this->assertEquals(13, $table->getRowLine(2));
 }