Psecio\PropAuth\Test\TestPasswordTest::testNotEqualsValidMatch PHP Method

testNotEqualsValidMatch() public method

When not equals is called, it will always return false
    public function testNotEqualsValidMatch()
    {
        $data = password_hash('testing1234', PASSWORD_DEFAULT);
        $check = new Check('not-equals', 'foo');
        $test = new TestPassword($check);
        $this->assertFalse($test->evaluate($data));
    }