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

testEqualsValidMatchSingle() public method

When a single password string is provided, evaluate for a match
    public function testEqualsValidMatchSingle()
    {
        $data = password_hash('testing1234', PASSWORD_DEFAULT);
        $check = new Check('equals', 'testing1234');
        $test = new TestPassword($check);
        $this->assertTrue($test->evaluate($data));
    }