Example #1
0
 public function testFetchColumn()
 {
     $row1 = ['id' => 1, 'foo' => 'bar'];
     $r = new Pseudo\Result();
     $r->addRow($row1);
     $s = new Pseudo\PdoStatement($r);
     $this->assertEquals('bar', $s->fetchColumn(1));
     $this->assertEquals(false, $s->fetchColumn(0));
 }