public void ShouldUseCorrectCaloriesForMeduimWithOutSweet() { Tyrannotea t = new Tyrannotea(); t.Size = Size.Medium; t.ReHoldSweet(); Assert.Equal <uint>(16, t.Calories); }
public void ShouldUseCorrectCaloriesForSmallWithoutSweet() { Tyrannotea t = new Tyrannotea(); t.Size = Size.Small; t.ReHoldSweet(); Assert.Equal <uint>(8, t.Calories); }
public void ShouldUseCorrectCaloriesForLargeWithoutSweet() { Tyrannotea t = new Tyrannotea(); t.Size = Size.Large; t.ReHoldSweet(); Assert.Equal <uint>(32, t.Calories); }