コード例 #1
0
ファイル: VCodeTest.php プロジェクト: windqyoung/utils
 public function testvalue()
 {
     $this->assertSame(null, $this->vcode->value(null));
     $this->assertSame(123, $this->vcode->value(function () {
         return 123;
     }));
 }