/**
  * Tests the JDatabaseQuerySqlite::currentTimestamp method.
  *
  * @return  void
  *
  * @covers  JDatabaseQuerySqlite::currentTimestamp
  * @since   3.4
  */
 public function testCurrentTimestamp()
 {
     $this->assertThat($this->_instance->currentTimestamp(), $this->equalTo('CURRENT_TIMESTAMP'));
 }
예제 #2
0
 /**
  * Tests the JDatabaseQuerySqlite::currentTimestamp method.
  *
  * @return  void
  *
  * @covers  JDatabaseQuerySqlite::currentTimestamp
  * @since   3.4
  */
 public function testCurrentTimestamp()
 {
     $this->assertEquals('CURRENT_TIMESTAMP', $this->_instance->currentTimestamp());
 }