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