コード例 #1
0
ファイル: num.php プロジェクト: phabos/fuel-core
 /**
  * @see     Num::mask_credit_card
  */
 public function test_mask_credit_card()
 {
     $output = Num::mask_credit_card('1234567812345678');
     $expected = '**** **** **** 5678';
     $this->assertEquals($expected, $output);
 }