コード例 #1
0
ファイル: VCodeTest.php プロジェクト: windqyoung/utils
 public function testsetCodeMessageBuilder_buildCodeMessage()
 {
     $msg = 'good body';
     $this->vcode->setCodeMessageBuilder(function ($code) use($msg) {
         return $msg . $code;
     });
     $code = ' code';
     $this->assertSame($msg . $code, $this->vcode->buildCodeMessage($code));
 }