コード例 #1
0
ファイル: FcallTest.php プロジェクト: phalcon/zephir
 public function testArrayFill()
 {
     $t = new \Test\Fcall();
     $this->assertSame($t->testArrayFill(), array(array_fill(0, 5, '?'), array_fill(0, 6, '?')));
 }
コード例 #2
0
ファイル: FcallTest.php プロジェクト: chet0xhenry/zephir
 public function testArrayFill()
 {
     $t = new \Test\Fcall();
     $this->assertTrue($t->testArrayFill() == array(array_fill(0, 5, "?"), array_fill(0, 6, "?")));
 }