ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
class.ilDatabasePostgresTestMockData.php
Go to the documentation of this file.
1<?php
2require_once('./Services/Database/test/Implementations/data/class.ilDatabaseCommonTestMockData.php');
3
10{
11
15 public function getNow()
16 {
17 return "now()";
18 }
19
20
25 public function getInsertQuery($table_name)
26 {
27 return "INSERT INTO " . $table_name . "
28 (id,is_online,is_default,latitude,longitude,elevation,address,init_mob_id,comment_mob_id,container_id)
29 VALUES
30 (58,1,0,47.05983,7.624028,2.56,'Farbweg 9, 3400 Burgdorf',78,69,456);";
31 }
32}
An exception for terminatinating execution or to throw for unit testing.
Class ilDatabaseCommonTestMockData.