Exemplo n.º 1
0
        [TestMethod] // Are pastries real
        public void PastriesChecker_TestShouldTellIfPastriesExists_PastriesIsReal()
        {
            Pastries pastriesTest = new Pastries(600);

            Assert.AreEqual(typeof(Pastries), pastriesTest.GetType());
        }
 public void PastriesConstructor_CreatesInstanceOfPastries_PastriesObject()
 {
   Pastries testPastry = new Pastries(3);
   Assert.AreEqual(typeof(Pastries), testPastry.GetType());
 }