Ejemplo n.º 1
0
 public function testRowCount()
 {
     $rowCount = 666;
     $this->wrappedStmt->expects($this->once())->method('rowCount')->will($this->returnValue($rowCount));
     $this->assertSame($rowCount, $this->stmt->rowCount());
 }