public void GPhotoChecksumConstructorTest()
 {
     string initValue = "TestValue"; 
     GPhotoChecksum target = new GPhotoChecksum(initValue);
     Assert.AreEqual(initValue, target.Value);
 }
 public void GPhotoChecksumConstructorTest1()
 {
     GPhotoChecksum target = new GPhotoChecksum();
     Assert.IsNotNull(target);
     Assert.IsTrue(String.IsNullOrEmpty(target.Value));
 }