public void GPhotoWidthConstructorTest()
 {
     string initValue = "TestValue"; 
     GPhotoWidth target = new GPhotoWidth(initValue);
     Assert.AreEqual(initValue, target.Value);
 }
 public void GPhotoWidthConstructorTest1()
 {
     GPhotoWidth target = new GPhotoWidth();
     Assert.IsNotNull(target);
     Assert.IsTrue(String.IsNullOrEmpty(target.Value));
 }