public void VelociWrapShouldUpdateComponents() { VelociWrap dr = new VelociWrap(); Assert.Equal(dr.Description, dr.ToString()); dr.HoldDressing(); dr.HoldLettuce(); dr.HoldCheese(); Assert.Collection <string>(dr.Special, item => { Assert.Equal("Hold Ceasar Dressing", item); }, item => { Assert.Equal("Hold Romaine Lettuce", item); }, item => { Assert.Equal("Hold Parmesan Cheese", item); } ); }
public void VelociWrapToStringShouldGiveName() { VelociWrap vw = new VelociWrap(); Assert.Equal("Veloci-Wrap", vw.ToString()); }
public void CorrectDefaultToString() { VelociWrap v = new VelociWrap(); Assert.Equal("Veloci-Wrap", v.ToString()); }
public void DescriptionMatchesToString() { VelociWrap vw = new VelociWrap(); Assert.Equal(vw.Description, vw.ToString()); }
public void VelociWrapShouldHaveCorrectDescription() { VelociWrap dr = new VelociWrap(); Assert.Equal(dr.Description, dr.ToString()); }
public void VelociWrapDescription() { VelociWrap vw = new VelociWrap(); Assert.Equal("Veloci-Wrap", vw.ToString()); }
public void ShouldHaveCorrectToString() { VelociWrap vw = new VelociWrap(); Assert.Equal("Veloci-Wrap", vw.ToString()); }
public void CorrectDescription() { VelociWrap vw = new VelociWrap(); Assert.Equal(vw.ToString(), vw.Description); }