コード例 #1
0
        public void CasualCanSetPatio()
        {
            Casual tchotchkes = new Casual();

            tchotchkes.HasPatio = false;
            Assert.IsFalse(tchotchkes.HasPatio);
        }
コード例 #2
0
        public void CasualRestaurantsAreCreatedWithSomethingAlreadyOnTheMenu()
        //you will need to write a constructor function
        {
            Casual tchotchkes = new Casual();

            Assert.IsTrue(tchotchkes.MenuItems.Count > 0);
        }
コード例 #3
0
        public void CasualCanCreateInstance()
        {
            Casual tchotchkes = new Casual();

            Assert.IsNotNull(tchotchkes);
        }