public void BreadSubtotal_IsSubtotal_Int() { Bread testBread = new Bread("Como"); testBread.AddBread(41); testBread.BreadSubtotal(); int testSubtotal = 140; Assert.AreEqual(testSubtotal, testBread.BreadsSubtotal); }