engelsystem/test/model/RoomModelTest.php

37 lines
678 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;
2017-01-02 03:57:23 +01:00
class RoomModelTest extends \PHPUnit_Framework_TestCase
{
private $room_id = null;
2015-05-14 17:20:46 +02:00
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 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$room = Room($this->room_id);
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
$this->assertNotFalse($room);
$this->assertNotNull($room);
$this->assertEquals($room['Name'], 'test');
2017-01-02 15:43:36 +01:00
$this->assertNull(Room(-1));
2017-01-02 03:57:23 +01:00
}
2015-05-14 17:20:46 +02:00
2017-01-02 15:43:36 +01:00
/**
* @after
*/
public function teardown()
{
if ($this->room_id != null) {
Room_delete($this->room_id);
}
}
2015-05-14 17:20:46 +02:00
}