From be919f289863450ab9e089067335c98aa0a852d2 Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Mon, 8 Feb 2010 02:09:35 +0000 Subject: [PATCH] MINOR Added test case for Hierarchy::getDescendantIDList() which also tests Hierarchy::loadDescendantIDListInto() git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.4@98369 467b73ca-7a2a-4603-9d3b-597d59a354a9 --- tests/model/HierarchyTest.php | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/tests/model/HierarchyTest.php b/tests/model/HierarchyTest.php index 891263750..f7d63be5a 100644 --- a/tests/model/HierarchyTest.php +++ b/tests/model/HierarchyTest.php @@ -88,5 +88,15 @@ class HierarchyTest extends SapphireTest { 'numChildren() caching can be disabled by flushCache()' ); } - -} + + function testLoadDescendantIDListInto() { + $page2 = $this->objFromFixture('Page', 'page2'); + $idList = $page2->getDescendantIDList(); + $page2a = $this->objFromFixture('Page', 'page2a'); + $page2b = $this->objFromFixture('Page', 'page2b'); + $this->assertContains($page2a->ID, $idList, 'Page 2a is a descendant of Page 2'); + $this->assertContains($page2b->ID, $idList, 'Page 2b is a descendant of Page 2'); + $this->assertEquals(2, count($idList), 'There are 2 descendants of Page 2'); + } + +} \ No newline at end of file