Exemplo n.º 1
0
 public function testRollsBackTransaction()
 {
     $driver = $this->getMock('Orno\\Db\\Driver\\Pdo');
     $driver->expects($this->once())->method('rollback')->will($this->returnValue($driver));
     $q = new Query($driver);
     $this->assertInstanceOf('Orno\\Db\\Query', $q->rollback());
 }