Faker\Test\Calculator\LuhnTest::testComputeCheckDigit PHP Method

testComputeCheckDigit() public method

public testComputeCheckDigit ( $partialNumber, $checkDigit )
    public function testComputeCheckDigit($partialNumber, $checkDigit)
    {
        $this->assertInternalType('string', $checkDigit);
        $this->assertEquals($checkDigit, Luhn::computeCheckDigit($partialNumber));
    }