Respect\Validation\Exceptions\ValidationExceptionTest::testItImplementsExceptionInterface PHP Метод

testItImplementsExceptionInterface() публичный Метод

    public function testItImplementsExceptionInterface()
    {
        $validationException = new ValidationException();
        $this->assertInstanceOf(ExceptionInterface::class, $validationException);
    }