コード例 #1
0
ファイル: VarsTest.php プロジェクト: NumbDai/zephir
 public function testArrayTypeVarDumpAndExport()
 {
     ob_start();
     $t = new \Test\Vars();
     $t->testArrayTypeVarDumpAndExport(array(1, 2, 3));
     ob_clean();
 }
コード例 #2
0
ファイル: VarsTest.php プロジェクト: chet0xhenry/zephir
 public function testBoolVarDump()
 {
     ob_start();
     $t = new \Test\Vars();
     $t->testBoolVarDump();
     ob_clean();
 }
コード例 #3
0
ファイル: VarsTest.php プロジェクト: phalcon/zephir
 public function testBoolVarDump()
 {
     $this->expectOutputString('bool(true)' . "\n" . 'true');
     $t = new \Test\Vars();
     $t->testBoolVarDump();
 }