Ejemplo n.º 1
0
 /**
  * @covers LuhnAlgorithm::stringToInteger
  * @dataProvider provider
  */
 public function testStringToInteger($number)
 {
     $int = LuhnAlgorithm::toInteger($number);
     $this->assertTrue(is_numeric($int));
 }