public void ShouldReturnCorrectToString() { Data.Entrees.ThugsTBone entree = new Data.Entrees.ThugsTBone(); Assert.Equal("Thugs T-Bone", entree.ToString()); }
public void ShouldReturnCorrectCalories() { Data.Entrees.ThugsTBone entree = new Data.Entrees.ThugsTBone(); Assert.True(entree.Calories == 982); }
public void ShouldReturnCorrectSpecialInstructions() { Data.Entrees.ThugsTBone entree = new Data.Entrees.ThugsTBone(); Assert.Empty(entree.SpecialInstructions); }
public void ShouldReturnCorrectPrice() { Data.Entrees.ThugsTBone entree = new Data.Entrees.ThugsTBone(); Assert.True(entree.Price == 6.44); }