diff --git a/tests/unit/e_onlineTest.php b/tests/unit/e_onlineTest.php new file mode 100644 index 000000000..61c476275 --- /dev/null +++ b/tests/unit/e_onlineTest.php @@ -0,0 +1,56 @@ +on = $this->make('e_online'); + $this->on->__construct(); + } + catch (Exception $e) + { + $this->assertTrue(false, "Couldn't load e_online object"); + } + + + + } + + + + + + public function testGoOnline() + { + + $this->on->goOnline(true, true); + // var_dump(TOTAL_ONLINE); + } + + public function testIsBot() + { + + } + + public function testGuestList() + { + + } + + public function testUserList() + { + + } + }