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