TYPO3 CMS  TYPO3_6-2
ArrayBrowserTest.php
Go to the documentation of this file.
1 <?php
3 
23 
27  protected $fixture;
28 
29  public function setUp() {
30  $this->fixture = new \TYPO3\CMS\Lowlevel\Utility\ArrayBrowser();
31  }
32 
34  // Tests concerning depthKeys
36 
40  $this->assertEquals(array(), $this->fixture->depthKeys(array(), array()));
41  }
42 
47  $this->assertEquals(array(0 => 1), $this->fixture->depthKeys(array('foo'), array()));
48  }
49 
50 }