mirror of
https://github.com/shlinkio/shlink.git
synced 2024-12-26 06:28:27 +03:00
19 lines
506 B
PHP
19 lines
506 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\Installer\Exception;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Shlinkio\Shlink\Installer\Exception\MissingRequiredOptionException;
|
|
|
|
class MissingRequiredOptionExceptionTest extends TestCase
|
|
{
|
|
/**
|
|
* @test
|
|
*/
|
|
public function fromOptionsGeneratesExpectedMessage()
|
|
{
|
|
$e = MissingRequiredOptionException::fromOption('foo');
|
|
$this->assertEquals('The "foo" is required and can\'t be empty', $e->getMessage());
|
|
}
|
|
}
|