diff --git a/tests/unit/e_db_pdoTest.php b/tests/unit/e_db_pdoTest.php index 10b66aa2f..1b0e01478 100644 --- a/tests/unit/e_db_pdoTest.php +++ b/tests/unit/e_db_pdoTest.php @@ -760,6 +760,11 @@ $result = $this->db->max('generic', 'gen_user_id'); $this->assertEquals('555', $result, "gen_ip = '127.0.0.1'"); + + $result = $this->db->max('generic', 'gen_user_id', "gen_ip = '127.0.0.1'"); + $this->assertEquals('555', $result); + + } diff --git a/tests/unit/e_onlineTest.php b/tests/unit/e_onlineTest.php index 61c476275..e2efae2cc 100644 --- a/tests/unit/e_onlineTest.php +++ b/tests/unit/e_onlineTest.php @@ -36,6 +36,15 @@ { $this->on->goOnline(true, true); + + $this->on->goOnline(false, false); + + + // $this->on->goOnline(true, true); + + + + // var_dump($markers); // var_dump(TOTAL_ONLINE); }