engelsystem/test/model/LogEntriesModelTest.php

35 lines
772 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;
class LogEntriesModelTest extends \PHPUnit_Framework_TestCase {
2015-06-07 20:42:01 +02:00
public function create_LogEntry() {
LogEntry_create('test', 'test');
}
public function test_LogEntry_create() {
$count = count(LogEntries());
$this->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();
}
}
2016-10-09 09:40:11 +02:00
?>