コード例 #1
0
ファイル: QueryTest.php プロジェクト: jbanety/database
 /**
  * Test for seconds extraction from date.
  *
  * @return  void
  *
  * @since   1.0
  */
 public function test__toStringSecond()
 {
     $this->instance->select($this->instance->second($this->instance->quoteName('col')))->from('table');
     $this->assertThat((string) $this->instance, $this->equalTo(PHP_EOL . "SELECT SECOND(`col`)" . PHP_EOL . "FROM table"));
 }