Exemplo n.º 1
0
        public void FormatTest()
        {
            ImgTextItem target   = new ImgTextItem(); //
            string      expected = string.Empty;      //
            string      actual;

            target.Format = expected;
            actual        = target.Format;
            Assert.AreEqual(expected, actual);
            //Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemplo n.º 2
0
        public void ShowTest()
        {
            ImgTextItem target   = new ImgTextItem(); //
            bool        expected = false;             //
            bool        actual;

            target.Show = expected;
            actual      = target.Show;
            Assert.AreEqual(expected, actual);
            //Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemplo n.º 3
0
        public void CloneTest()
        {
            ImgTextItem target   = new ImgTextItem(); //
            ImgTextItem expected = target;            //
            ImgTextItem actual;

            actual = target.Clone();
            Assert.AreEqual(expected.Format, actual.Format);
            Assert.AreEqual(expected.Show, actual.Show);
            Assert.AreEqual(expected.Tag, actual.Tag);
            //Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemplo n.º 4
0
 public void ImgTextItemConstructorTest()
 {
     ImgTextItem target = new ImgTextItem();
     //Assert.Inconclusive("TODO: Implement code to verify target");
 }