コード例 #1
0
ファイル: BasicNodeTest.php プロジェクト: samj1912/repo
 /**
  * @depends testSimpleDirectoryConstruct
  * @depends testSimpleDirectoryAddChild
  */
 public function testSimpleDirectoryGetChildren()
 {
     $file = new FileMock();
     $dir = new SimpleCollection('simpledir');
     $dir->addChild($file);
     $this->assertEquals(array($file), $dir->getChildren());
 }