Exemplo n.º 1
0
 public function testFetchesRowArray()
 {
     $driver = $this->getMock('Orno\\Db\\Driver\\Pdo');
     $row = ['id' => 1, 'col1' => 'value', 'col2' => 'value2'];
     $driver->expects($this->once())->method('fetch')->will($this->returnValue($row));
     $q = new Query($driver);
     $this->assertSame($row, $q->fetch());
 }