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

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