Пример #1
0
        public void TestMethod2()
        {
            GiftBox box = new GiftBox(1, 1, 10);

            Assert.AreEqual(43, box.WrappingNeeded());
        }
Пример #2
0
        public void TestMethod1()
        {
            GiftBox box = new GiftBox(2, 3, 4);

            Assert.AreEqual(58, box.WrappingNeeded());
        }