示例#1
0
        public void NormalConditions()
        {
            try
            {
                Pants pants = new Pants("large", "red");

                pants.DisplayClothing();
                pants.Wash();
                pants.Pack();
                pants.Hang();
            }
            catch
            {
                Assert.IsTrue(false);
            }

            Assert.IsTrue(true);
        }