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

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