public void GPhotoMaxPhotosPerAlbumConstructorTest()
 {
     string initValue = "TestValue"; 
     GPhotoMaxPhotosPerAlbum target = new GPhotoMaxPhotosPerAlbum(initValue);
     Assert.AreEqual(initValue, target.Value);
 }
 public void GPhotoMaxPhotosPerAlbumConstructorTest1()
 {
     GPhotoMaxPhotosPerAlbum target = new GPhotoMaxPhotosPerAlbum();
     Assert.IsNotNull(target);
     Assert.IsTrue(String.IsNullOrEmpty(target.Value));
 }