engelsystem/test/model/LogEntriesModelTest.php

37 lines
823 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;
2017-01-02 03:57:23 +01:00
class LogEntriesModelTest extends \PHPUnit_Framework_TestCase
{
public function create_LogEntry()
{
LogEntry_create('test', 'test');
}
2015-06-07 20:42:01 +02:00
2017-01-02 03:57:23 +01:00
public function test_LogEntry_create()
{
$count = count(LogEntries());
$this->assertNotFalse(LogEntry_create('test', 'test_LogEntry_create'));
2015-06-07 20:42:01 +02: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
2017-01-02 03:57:23 +01:00
public function test_LogEntries_clear_all()
{
$this->create_LogEntry();
$this->assertTrue(count(LogEntries()) > 0);
$this->assertNotFalse(LogEntries_clear_all());
$this->assertEquals(count(LogEntries()), 0);
}
2015-06-07 20:42:01 +02:00
/**
* @after
*/
2017-01-02 03:57:23 +01:00
public function teardown()
{
LogEntries_clear_all();
2015-06-07 20:42:01 +02:00
}
}