public void ShouldHaveCorrectToString() { PrehistoricPBJ pbj = new PrehistoricPBJ(); Assert.Equal("Prehistoric PB&J", pbj.ToString()); }
public void PrehistoricPBJToStringShouldGiveName() { PrehistoricPBJ pbj = new PrehistoricPBJ(); Assert.Equal("Prehistoric PB&J", pbj.ToString()); }
public void PrehistoricPBJShouldHaveCorrectDescription() { PrehistoricPBJ dr = new PrehistoricPBJ(); Assert.Equal(dr.Description, dr.ToString()); }
public void PrehistoricPBJDescription() { PrehistoricPBJ pbj = new PrehistoricPBJ(); Assert.Equal("Prehistoric PB&J", pbj.ToString()); }
public void CorrectDefaultToString() { PrehistoricPBJ pbj = new PrehistoricPBJ(); Assert.Equal("Prehistoric PB&J", pbj.ToString()); }
public void PrehistoricPBJShouldUpdateComponents() { PrehistoricPBJ dr = new PrehistoricPBJ(); Assert.Equal(dr.Description, dr.ToString()); }
public void CorrectDescription() { PrehistoricPBJ pbj = new PrehistoricPBJ(); Assert.Equal(pbj.ToString(), pbj.Description); }