You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
797 B
PHP
45 lines
797 B
PHP
<?php
|
|
|
|
namespace Engelsystem\Test\Feature\Model;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class RoomModelTest extends TestCase
|
|
{
|
|
private $room_id = null;
|
|
|
|
/**
|
|
* @covers \Room_create
|
|
*/
|
|
public function createRoom()
|
|
{
|
|
$this->room_id = Room_create('test', false, null, null);
|
|
}
|
|
|
|
/**
|
|
* @covers \Room
|
|
*/
|
|
public function testRoom()
|
|
{
|
|
$this->createRoom();
|
|
|
|
$room = Room($this->room_id);
|
|
|
|
$this->assertNotEmpty($room);
|
|
$this->assertNotNull($room);
|
|
$this->assertEquals($room['Name'], 'test');
|
|
|
|
$this->assertEmpty(Room(-1));
|
|
}
|
|
|
|
/**
|
|
* Cleanup
|
|
*/
|
|
protected function tearDown(): void
|
|
{
|
|
if ($this->room_id != null) {
|
|
Room_delete($this->room_id);
|
|
}
|
|
}
|
|
}
|