public void forceEvaluationTest()
 {
     MeTLStanzas.Video target = new MeTLStanzas.Video(); // TODO: Initialize to an appropriate value
     Video expected = null; // TODO: Initialize to an appropriate value
     Video actual;
     actual = target.forceEvaluation();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void adoptCache(ResourceCache cache, MeTLServerAddress server)
 {
     if (videoSpecification == null) videoSpecification = new MeTLStanzas.Video(this);
     videoSpecification.adoptCache(cache, server);
 }
 public void MeTLStanzas_VideoConstructorTest1()
 {
     MeTLStanzas.Video target = new MeTLStanzas.Video();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void MeTLStanzas_VideoConstructorTest()
 {
     TargettedVideo video = null; // TODO: Initialize to an appropriate value
     MeTLStanzas.Video target = new MeTLStanzas.Video(video);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void widthTest()
 {
     MeTLStanzas.Video target = new MeTLStanzas.Video(); // TODO: Initialize to an appropriate value
     double expected = 0F; // TODO: Initialize to an appropriate value
     double actual;
     target.width = expected;
     actual = target.width;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void tagTest()
 {
     MeTLStanzas.Video target = new MeTLStanzas.Video(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     target.tag = expected;
     actual = target.tag;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void sourceTest()
 {
     MeTLStanzas.Video target = new MeTLStanzas.Video(); // TODO: Initialize to an appropriate value
     Uri expected = null; // TODO: Initialize to an appropriate value
     Uri actual;
     target.source = expected;
     actual = target.source;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }