コード例 #1
0
ファイル: StatementTest.php プロジェクト: selimcr/servigases
 public function testRowCount()
 {
     $rowCount = 666;
     $this->wrappedStmt->expects($this->once())->method('rowCount')->will($this->returnValue($rowCount));
     $this->assertSame($rowCount, $this->stmt->rowCount());
 }