public void EntreeToStringShouldMatchExpectations(Type type, string expected) { Entree entree = Activator.CreateInstance(type) as Entree; Assert.Equal(expected, entree.ToString()); }
/// <summary> /// crates the description /// </summary> /// <returns></returns> public override string ToString() { return(Entree.ToString() + " Combo"); }