public function test1()
 {
     DataLayer::testRow0a(1);
     DataLayer::testRows1(1);
     DataLayer::testRowsWithIndex1(100);
     DataLayer::testRowsWithKey1(100);
 }
Esempio n. 2
0
 /**
  * An exception must be thrown when a stored routine with designation type row0 returns more than 1 rows.
  *
  * @expectedException SetBased\Stratum\Exception\ResultException
  */
 public function test3()
 {
     DataLayer::testRow0a(2);
 }