public void ToString_SetLambdaToolTip() { GridImage gi = new GridImage(); gi.SetToolTip(x => x["Description"]); string expected = @"<img title='""+ro[""Description""]+""' />"; string actual = gi.ToString(); Assert.AreEqual(expected, actual); }
public void ToString_AllProperties_CorrectImageTag() { GridImage gi = new GridImage(); gi.SetImagePath("/images/red.png"); gi.SetToolTip("InActive"); gi.SetWidth(16); gi.SetHeight(16); string expected = "<img src='/images/red.png' title='InActive' width='16' height='16' />"; string actual = gi.ToString(); Assert.AreEqual(expected, actual); }