Files
Froxlor/tests/Global/ApiParameterTest.php
2018-06-01 08:01:09 +02:00

19 lines
392 B
PHP

<?php
use PHPUnit\Framework\TestCase;
/**
*
* @covers ApiParameter
*/
class ApiParameterTest extends TestCase
{
public function testMissingRequiredParameter()
{
global $admin_userdata;
$this->expectExceptionCode(404);
$this->expectExceptionMessage('Requested parameter "key" could not be found for "Froxlor:getSetting"');
Froxlor::getLocal($admin_userdata)->getSetting();
}
}