public void CanvasTest()
 {
     ThumbnailInformation target = new ThumbnailInformation(); // TODO: Initialize to an appropriate value
     Visual expected = null; // TODO: Initialize to an appropriate value
     Visual actual;
     target.Canvas = expected;
     actual = target.Canvas;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void ExposedTest()
 {
     ThumbnailInformation target = new ThumbnailInformation(); // TODO: Initialize to an appropriate value
     bool expected = false; // TODO: Initialize to an appropriate value
     bool actual;
     target.Exposed = expected;
     actual = target.Exposed;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void ThumbnailInformationConstructorTest()
 {
     ThumbnailInformation target = new ThumbnailInformation();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void typeTest()
 {
     ThumbnailInformation target = new ThumbnailInformation(); // TODO: Initialize to an appropriate value
     Slide.TYPE expected = new Slide.TYPE(); // TODO: Initialize to an appropriate value
     Slide.TYPE actual;
     target.type = expected;
     actual = target.type;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void slideNumberTest()
 {
     ThumbnailInformation target = new ThumbnailInformation(); // TODO: Initialize to an appropriate value
     int expected = 0; // TODO: Initialize to an appropriate value
     int actual;
     target.slideNumber = expected;
     actual = target.slideNumber;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void ThumbnailBrushTest()
 {
     ThumbnailInformation target = new ThumbnailInformation(); // TODO: Initialize to an appropriate value
     ImageBrush expected = null; // TODO: Initialize to an appropriate value
     ImageBrush actual;
     target.ThumbnailBrush = expected;
     actual = target.ThumbnailBrush;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }