update tests to work with phpunit version installed by composer

This commit is contained in:
msquare 2017-07-19 21:49:04 +02:00
parent 8ae0123635
commit 9b3f6f557a
3 changed files with 15 additions and 10 deletions

View File

@ -16,6 +16,7 @@
<whitelist>
<directory>./include/</directory>
<directory>./public/</directory>
<directory>./src/</directory>
</whitelist>
</filter>
<php>

View File

@ -1,9 +1,11 @@
<?php
namespace Engelsystem\Test;
class LogEntriesModelTest extends \PHPUnit_Framework_TestCase
use \PHPUnit\Framework\TestCase;
class LogEntriesModelTest extends TestCase
{
public function create_LogEntry()
{
LogEntry_create('test', 'test');

View File

@ -1,9 +1,11 @@
<?php
namespace Engelsystem\Test;
class RoomModelTest extends \PHPUnit_Framework_TestCase
use \PHPUnit\Framework\TestCase;
class RoomModelTest extends TestCase
{
private $room_id = null;
public function create_Room()
@ -21,7 +23,7 @@ class RoomModelTest extends \PHPUnit_Framework_TestCase
$this->assertNotNull($room);
$this->assertEquals($room['Name'], 'test');
$this->assertNull(Room(-1));
$this->assertNull(Room(- 1));
}
/**