You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
545 B
19 lines
545 B
<?php
|
|
|
|
namespace TestException;
|
|
|
|
use Exception;
|
|
use PHPUnit\Framework\TestCase;
|
|
use Exceptions\InvalidLoginOrPasswordException;
|
|
|
|
class InvalidLoginOrPasswordExceptionTest extends TestCase
|
|
{
|
|
public function testConstructor()
|
|
{
|
|
$exception = new InvalidLoginOrPasswordException();
|
|
$this->assertInstanceOf(InvalidLoginOrPasswordException::class, $exception);
|
|
$this->assertInstanceOf(Exception::class, $exception);
|
|
$this->assertEquals("Identifiant ou mot de passe invalide", $exception->getMessage());
|
|
}
|
|
}
|