コード例 #1
0
ファイル: DbHelperTest.php プロジェクト: VinniaAB/db-tools
 public function testSelectOne()
 {
     $this->helper->insert('car', ['make' => 'volvo', 'model' => 'xc90']);
     $car = $this->helper->selectOne('car');
     $this->assertEquals('volvo', $car['make']);
     $this->assertEquals('xc90', $car['model']);
 }