2015-05-14 17:20:46 +02:00
|
|
|
<?php
|
2017-09-19 19:33:24 +02:00
|
|
|
|
2017-10-31 14:23:23 +01:00
|
|
|
namespace Engelsystem\Test\Feature\Model;
|
2016-11-18 08:26:27 +01:00
|
|
|
|
2017-09-19 19:33:24 +02:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2017-07-19 21:49:04 +02:00
|
|
|
|
|
|
|
class RoomModelTest extends TestCase
|
2017-01-02 03:57:23 +01:00
|
|
|
{
|
|
|
|
private $room_id = null;
|
2015-05-14 17:20:46 +02:00
|
|
|
|
2017-11-19 15:13:48 +01:00
|
|
|
public function createRoom()
|
2017-01-02 03:57:23 +01:00
|
|
|
{
|
2017-12-10 15:02:37 +01:00
|
|
|
$this->room_id = Room_create('test', false, null, null);
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
2015-05-14 17:20:46 +02:00
|
|
|
|
2017-11-19 15:13:48 +01:00
|
|
|
public function testRoom()
|
2017-01-02 03:57:23 +01:00
|
|
|
{
|
2017-11-19 15:13:48 +01:00
|
|
|
$this->createRoom();
|
2017-09-19 19:33:24 +02:00
|
|
|
|
2017-01-02 03:57:23 +01:00
|
|
|
$room = Room($this->room_id);
|
2017-09-19 19:33:24 +02:00
|
|
|
|
2018-01-14 18:47:15 +01:00
|
|
|
$this->assertNotEmpty($room);
|
2017-01-02 03:57:23 +01:00
|
|
|
$this->assertNotNull($room);
|
|
|
|
$this->assertEquals($room['Name'], 'test');
|
2017-09-19 19:33:24 +02:00
|
|
|
|
2018-01-14 18:47:15 +01:00
|
|
|
$this->assertEmpty(Room(-1));
|
2017-01-02 03:57:23 +01:00
|
|
|
}
|
2015-05-14 17:20:46 +02:00
|
|
|
|
2017-09-19 19:33:24 +02:00
|
|
|
public function tearDown()
|
2017-01-02 15:43:36 +01:00
|
|
|
{
|
|
|
|
if ($this->room_id != null) {
|
|
|
|
Room_delete($this->room_id);
|
|
|
|
}
|
|
|
|
}
|
2015-05-14 17:20:46 +02:00
|
|
|
}
|