public void Populater_WithMaximumDepth_should_return_hierarchy_with_specified_maximum_depth()
        {
            int maximumDepth = 3;

            TestRecursiveThing recursiveThing = new Population.Populater().WithMaximumDepth(maximumDepth).CreateAndPopulate <TestRecursiveThing>();

            AssertExpectedMaximumDepth(recursiveThing, maximumDepth);
        }
 public void TestInitialize()
 {
     _populater = new Population.Populater();
 }