public void ContentTextTest()
 {
     MeTLImageToolTip target = new MeTLImageToolTip(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     target.ContentText = expected;
     actual = target.ContentText;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void ImageSourceTest()
 {
     MeTLImageToolTip target = new MeTLImageToolTip(); // TODO: Initialize to an appropriate value
     ImageSource expected = null; // TODO: Initialize to an appropriate value
     ImageSource actual;
     target.ImageSource = expected;
     actual = target.ImageSource;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void MeTLImageToolTipConstructorTest()
 {
     MeTLImageToolTip target = new MeTLImageToolTip();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }