public void GPhotoQuotaCurrentConstructorTest()
        {
            string             initValue = "TestValue";
            GPhotoQuotaCurrent target    = new GPhotoQuotaCurrent(initValue);

            Assert.AreEqual(initValue, target.Value);
        }
        public void GPhotoQuotaCurrentConstructorTest1()
        {
            GPhotoQuotaCurrent target = new GPhotoQuotaCurrent();

            Assert.IsNotNull(target);
            Assert.IsTrue(String.IsNullOrEmpty(target.Value));
        }