Esempio n. 1
0
        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);
        }
Esempio n. 2
0
        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);
        }
Esempio n. 3
0
        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);
        }
Esempio n. 4
0
        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);
        }