Esempio n. 1
0
 /** 
  * Test GREATEST function
  */
 public function testGreatest()
 {
     $this->assertEquals(5, MySQLite::mysql_greatest(0, 3, 5));
     $this->assertEquals('Z', MySQLite::mysql_greatest('A', 'L', 'Z'));
     try {
         MySQLite::mysql_greatest();
         $this->fail("Greater with no arguments is not valid");
     } catch (\InvalidArgumentException $e) {
         /* Expected */
     }
 }