public void tagTest()
 {
     PowerpointVideo target = new PowerpointVideo(); // TODO: Initialize to an appropriate value
     TextTag expected = new TextTag(); // TODO: Initialize to an appropriate value
     TextTag actual;
     actual = target.tag();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void AnimationTimeLineTest()
 {
     PowerpointVideo target = new PowerpointVideo(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     target.AnimationTimeLine = expected;
     actual = target.AnimationTimeLine;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void PowerpointVideoConstructorTest()
 {
     PowerpointVideo target = new PowerpointVideo();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void VideoWidthTest()
 {
     PowerpointVideo target = new PowerpointVideo(); // TODO: Initialize to an appropriate value
     double expected = 0F; // TODO: Initialize to an appropriate value
     double actual;
     target.VideoWidth = expected;
     actual = target.VideoWidth;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void VideoSourceTest()
 {
     PowerpointVideo target = new PowerpointVideo(); // TODO: Initialize to an appropriate value
     Uri expected = null; // TODO: Initialize to an appropriate value
     Uri actual;
     target.VideoSource = expected;
     actual = target.VideoSource;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void VideoDurationTest()
 {
     PowerpointVideo target = new PowerpointVideo(); // TODO: Initialize to an appropriate value
     TimeSpan expected = new TimeSpan(); // TODO: Initialize to an appropriate value
     TimeSpan actual;
     target.VideoDuration = expected;
     actual = target.VideoDuration;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void PlayModeTest()
 {
     PowerpointVideo target = new PowerpointVideo(); // TODO: Initialize to an appropriate value
     MediaState expected = new MediaState(); // TODO: Initialize to an appropriate value
     MediaState actual;
     target.PlayMode = expected;
     actual = target.PlayMode;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }