示例#1
0
        public void TestWinterIncrease()
        {
            int currentHight = firTree.Hight;
            int increase     = forest.WinterIncrease(firTree);

            Assert.That(increase, Is.EqualTo(1));
            Assert.That(firTree.Hight, Is.EqualTo(currentHight + 1));
        }