summaryrefslogtreecommitdiff
path: root/test/model/LogEntriesModelTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'test/model/LogEntriesModelTest.php')
-rw-r--r--test/model/LogEntriesModelTest.php29
1 files changed, 12 insertions, 17 deletions
diff --git a/test/model/LogEntriesModelTest.php b/test/model/LogEntriesModelTest.php
index 25d46fc4..761725c4 100644
--- a/test/model/LogEntriesModelTest.php
+++ b/test/model/LogEntriesModelTest.php
@@ -1,37 +1,32 @@
<?php
+
namespace Engelsystem\Test;
-use \PHPUnit\Framework\TestCase;
+use PHPUnit\Framework\TestCase;
+use Psr\Log\LogLevel;
class LogEntriesModelTest extends TestCase
{
-
- public function create_LogEntry()
- {
- LogEntry_create('test', 'test');
- }
-
- public function test_LogEntry_create()
+ public function testCreateLogEntry()
{
+ LogEntries_clear_all();
$count = count(LogEntries());
- $this->assertNotFalse(LogEntry_create('test', 'test_LogEntry_create'));
-
+ $this->assertNotFalse(LogEntry_create(LogLevel::WARNING, 'test_LogEntry_create'));
+
// There should be one more log entry now
$this->assertEquals(count(LogEntries()), $count + 1);
}
- public function test_LogEntries_clear_all()
+ public function testClearAllLogEntries()
{
- $this->create_LogEntry();
+ LogEntry_create(LogLevel::WARNING, 'test');
$this->assertTrue(count(LogEntries()) > 0);
+
$this->assertNotFalse(LogEntries_clear_all());
- $this->assertEquals(count(LogEntries()), 0);
+ $this->assertCount(0, LogEntries());
}
- /**
- * @after
- */
- public function teardown()
+ public function tearDown()
{
LogEntries_clear_all();
}