示例#1
0
        public void EntreeToStringShouldMatchExpectations(Type type, string expected)
        {
            Entree entree = Activator.CreateInstance(type) as Entree;

            Assert.Equal(expected, entree.ToString());
        }
示例#2
0
 /// <summary>
 /// crates the description
 /// </summary>
 /// <returns></returns>
 public override string ToString()
 {
     return(Entree.ToString() + " Combo");
 }