engelsystem/tests/Feature/Model/RoomModelTest.php

36 lines
676 B
PHP
Raw Normal View History

2015-05-14 17:20:46 +02:00
<?php
namespace Engelsystem\Test\Feature\Model;
2016-11-18 08:26:27 +01:00
use PHPUnit\Framework\TestCase;
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
{
$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-01-02 03:57:23 +01:00
$room = Room($this->room_id);
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');
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
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
}