Respect\Validation\Exceptions\ValidationExceptionTest::testItImplementsExceptionInterface PHP Method

testItImplementsExceptionInterface() public method

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