summaryrefslogtreecommitdiff
path: root/test/model/RoomModelTest.php
diff options
context:
space:
mode:
authormsquare <msquare@notrademark.de>2017-07-19 21:49:04 +0200
committermsquare <msquare@notrademark.de>2017-07-19 21:49:04 +0200
commit9b3f6f557a127fef16be267c26f8239dc1c22126 (patch)
tree2da2618a3db5586dfc82556e152b979c55625ed8 /test/model/RoomModelTest.php
parent8ae01236353dad099e98f555fdf9cbfbf5cdca6a (diff)
update tests to work with phpunit version installed by composer
Diffstat (limited to 'test/model/RoomModelTest.php')
-rw-r--r--test/model/RoomModelTest.php14
1 files changed, 8 insertions, 6 deletions
diff --git a/test/model/RoomModelTest.php b/test/model/RoomModelTest.php
index 9c91939d..135a6108 100644
--- a/test/model/RoomModelTest.php
+++ b/test/model/RoomModelTest.php
@@ -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()
@@ -14,14 +16,14 @@ class RoomModelTest extends \PHPUnit_Framework_TestCase
public function test_Room()
{
$this->create_Room();
-
+
$room = Room($this->room_id);
-
+
$this->assertNotFalse($room);
$this->assertNotNull($room);
$this->assertEquals($room['Name'], 'test');
-
- $this->assertNull(Room(-1));
+
+ $this->assertNull(Room(- 1));
}
/**