public void adoptCache(ResourceCache cache, MeTLServerAddress server)
 {
     if (imageSpecification == null) imageSpecification = new MeTLStanzas.Image(this);
     this.cache = cache;
     this.server = server;
     imageSpecification.adoptCache(cache, server);
 }
 public void MeTLStanzas_ImageConstructorTest1()
 {
     MeTLStanzas.Image target = new MeTLStanzas.Image();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void MeTLStanzas_ImageConstructorTest()
 {
     TargettedImage image = null; // TODO: Initialize to an appropriate value
     MeTLStanzas.Image target = new MeTLStanzas.Image(image);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
 public void yTest()
 {
     MeTLStanzas.Image target = new MeTLStanzas.Image(); // TODO: Initialize to an appropriate value
     double expected = 0F; // TODO: Initialize to an appropriate value
     double actual;
     target.y = expected;
     actual = target.y;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void tagTest()
 {
     MeTLStanzas.Image target = new MeTLStanzas.Image(); // 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.Image target = new MeTLStanzas.Image(); // TODO: Initialize to an appropriate value
     ImageSource expected = null; // TODO: Initialize to an appropriate value
     ImageSource actual;
     target.source = expected;
     actual = target.source;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }