engelsystem/test/model/RoomModelTest.php

36 lines
622 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;
class RoomModelTest extends \PHPUnit_Framework_TestCase {
2015-05-14 17:20:46 +02:00
private $room_id = null;
public function create_Room() {
$this->room_id = Room_create('test', false, true, '');
}
public function test_Room() {
$this->create_Room();
$room = Room($this->room_id);
$this->assertNotFalse($room);
$this->assertNotNull($room);
$this->assertEquals($room['Name'], 'test');
$this->assertNull(Room(- 1));
}
/**
* @after
*/
public function teardown() {
2016-09-30 18:49:33 +02:00
if ($this->room_id != null) {
2015-05-14 17:20:46 +02:00
Room_delete($this->room_id);
2016-09-30 18:49:33 +02:00
}
2015-05-14 17:20:46 +02:00
}
}
2016-10-09 09:40:11 +02:00
?>