engelsystem/tests/Feature/Model/RoomModelTest.php

41 lines
804 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
public static function setUpBeforeClass()
{
2017-11-01 12:35:45 +01:00
require_once __DIR__ . '/../../../includes/engelsystem.php';
}
2017-01-02 03:57:23 +01:00
public function create_Room()
{
$this->room_id = Room_create('test', false, true, '');
}
2015-05-14 17:20:46 +02:00
2017-01-02 03:57:23 +01:00
public function test_Room()
{
$this->create_Room();
2017-01-02 03:57:23 +01:00
$room = Room($this->room_id);
2017-01-02 03:57:23 +01:00
$this->assertNotFalse($room);
$this->assertNotNull($room);
$this->assertEquals($room['Name'], 'test');
$this->assertNull(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
}