Ejemplo n.º 1
0
 public function testArrayTypeVarDumpAndExport()
 {
     ob_start();
     $t = new \Test\Vars();
     $t->testArrayTypeVarDumpAndExport(array(1, 2, 3));
     ob_clean();
 }
Ejemplo n.º 2
0
 public function testBoolVarDump()
 {
     ob_start();
     $t = new \Test\Vars();
     $t->testBoolVarDump();
     ob_clean();
 }
Ejemplo n.º 3
0
 public function testBoolVarDump()
 {
     $this->expectOutputString('bool(true)' . "\n" . 'true');
     $t = new \Test\Vars();
     $t->testBoolVarDump();
 }