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