public void NoEmbedConstructorTest()
 {
     string initValue = "secret test string";
     NoEmbed target = new NoEmbed(initValue);
     Assert.AreEqual(target.Value, initValue, "Object value should be identical after construction");
 }
 public void NoEmbedConstructorTest1()
 {
     NoEmbed target = new NoEmbed();
     Assert.IsNull(target.Value,  "Object value should be null after construction");
 }