add namespace for test classes

This commit is contained in:
msquare 2016-11-18 08:26:27 +01:00
parent bd54bec595
commit 2a075b43c0
2 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,8 @@
<?php <?php
class LogEntriesModelTest extends PHPUnit_Framework_TestCase { namespace Engelsystem\Test;
class LogEntriesModelTest extends \PHPUnit_Framework_TestCase {
public function create_LogEntry() { public function create_LogEntry() {
LogEntry_create('test', 'test'); LogEntry_create('test', 'test');

View File

@ -1,6 +1,8 @@
<?php <?php
class RoomModelTest extends PHPUnit_Framework_TestCase { namespace Engelsystem\Test;
class RoomModelTest extends \PHPUnit_Framework_TestCase {
private $room_id = null; private $room_id = null;