From 86a4773243edd372b8d555d8a0f104bc6cce2bab Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Sun, 7 Jun 2015 20:42:01 +0200 Subject: add log entry test --- test/model/LogEntries_model_test.php | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 test/model/LogEntries_model_test.php (limited to 'test') diff --git a/test/model/LogEntries_model_test.php b/test/model/LogEntries_model_test.php new file mode 100644 index 00000000..cefc4177 --- /dev/null +++ b/test/model/LogEntries_model_test.php @@ -0,0 +1,32 @@ +assertNotFalse(LogEntry_create('test', 'test_LogEntry_create')); + + // There should be one more log entry now + $this->assertEquals(count(LogEntries()), $count + 1); + } + + public function test_LogEntries_clear_all() { + $this->create_LogEntry(); + $this->assertTrue(count(LogEntries()) > 0); + $this->assertNotFalse(LogEntries_clear_all()); + $this->assertEquals(count(LogEntries()), 0); + } + + /** + * @after + */ + public function teardown() { + LogEntries_clear_all(); + } +} + +?> \ No newline at end of file -- cgit v1.2.3-54-g00ecf