コード例 #1
0
ファイル: ContainerTest.php プロジェクト: dantudor/mockfs
 public function testContainerDoesNotHaveChildrenByDefault()
 {
     $container = new TestContainer();
     $this->assertFalse($container->hasChildren());
     $this->assertSame(array(), $container->getChildren());
 }