public void GPhotoClientConstructorTest()
 {
     string initValue = "TestValue"; 
     GPhotoClient target = new GPhotoClient(initValue);
     Assert.AreEqual(initValue, target.Value);
 }
 public void GPhotoClientConstructorTest1()
 {
     GPhotoClient target = new GPhotoClient();
     Assert.IsNotNull(target);
     Assert.IsTrue(String.IsNullOrEmpty(target.Value));
 }