mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 08:56:42 -06:00
20 lines
518 B
PHP
20 lines
518 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioTest\Shlink\Core\Exception;
|
|
|
|
use PHPUnit\Framework\Attributes\Test;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Shlinkio\Shlink\Core\Exception\InvalidIpFormatException;
|
|
|
|
class InvalidIpFormatExceptionTest extends TestCase
|
|
{
|
|
#[Test]
|
|
public function fromInvalidIp(): void
|
|
{
|
|
$e = InvalidIpFormatException::fromInvalidIp('invalid');
|
|
self::assertEquals('Provided IP invalid does not have the right format. Expected X.X.X.X', $e->getMessage());
|
|
}
|
|
}
|