engelsystem/tests/Feature/model/RoomModelTest.php

41 lines
799 B
PHP
Raw Normal View History

2015-05-14 17:20:46 +02:00
<?php
2016-11-18 08:26:27 +01:00
namespace Engelsystem\Test;
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()
{
require_once __DIR__ . '/../../../includes/engelsystem_provider.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
}