public function test1()
 {
     DataLayer::testRow0a(1);
     DataLayer::testRows1(1);
     DataLayer::testRowsWithIndex1(100);
     DataLayer::testRowsWithKey1(100);
 }
Exemple #2
0
 /**
  * Stored routine with designation type rows must return an array with 3 rows when 3 rows are selected.
  */
 public function test3()
 {
     $ret = DataLayer::testRows1(2);
     $this->assertInternalType('array', $ret);
     $this->assertCount(2, $ret);
 }