public void ToString_SetLambdaImagePath() { GridImage gi = new GridImage(); gi.SetImagePath(x => x["ImageUrl"]); string expected = @"<img src='""+ro[""ImageUrl""]+""' />"; 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); }