public void GPhotoNameConstructorTest()
        {
            string initValue = "TestValue"; 
            GPhotoName target = new GPhotoName(initValue);
            Assert.AreEqual(initValue, target.Value);

        }
 public void GPhotoNameConstructorTest1()
 {
     GPhotoName target = new GPhotoName();
     Assert.IsNotNull(target);
     Assert.IsTrue(String.IsNullOrEmpty(target.Value));
 }