Ejemplo n.º 1
0
 /**
  * @test
  */
 public function simpleInsertBuilder()
 {
     $table = 'types';
     $data = array('id' => '123', 'title' => 'my-status');
     $excepted = "INSERT INTO `{$this->trueDatabase1}`.`types`(`id`, `title`) VALUES('123', 'my-status')";
     $results = $this->databaseConnection->simpleInsertBuilder($table, $data);
     $this->assertEquals($excepted, $results);
 }