engelsystem/tests/Feature/model/LogEntriesModelTest.php

39 lines
941 B
PHP
Raw Normal View History

2015-06-07 20:42:01 +02:00
<?php
2016-11-18 08:26:27 +01:00
namespace Engelsystem\Test;
use PHPUnit\Framework\TestCase;
use Psr\Log\LogLevel;
class LogEntriesModelTest extends TestCase
2017-01-02 03:57:23 +01:00
{
public static function setUpBeforeClass()
{
require_once __DIR__ . '/../../../includes/engelsystem_provider.php';
}
public function testCreateLogEntry()
2017-01-02 03:57:23 +01:00
{
LogEntries_clear_all();
2017-01-02 03:57:23 +01:00
$count = count(LogEntries());
$this->assertNotFalse(LogEntry_create(LogLevel::WARNING, 'test_LogEntry_create'));
2017-01-02 15:43:36 +01:00
// There should be one more log entry now
$this->assertEquals(count(LogEntries()), $count + 1);
2017-01-02 03:57:23 +01:00
}
2015-06-07 20:42:01 +02:00
public function testClearAllLogEntries()
2017-01-02 03:57:23 +01:00
{
LogEntry_create(LogLevel::WARNING, 'test');
2017-01-02 03:57:23 +01:00
$this->assertTrue(count(LogEntries()) > 0);
2017-01-02 03:57:23 +01:00
$this->assertNotFalse(LogEntries_clear_all());
$this->assertCount(0, LogEntries());
2017-01-02 03:57:23 +01:00
}
2015-06-07 20:42:01 +02:00
public function tearDown()
2017-01-02 15:43:36 +01:00
{
LogEntries_clear_all();
}
2015-06-07 20:42:01 +02:00
}