public void GPhotoNumPhotosRemainingConstructorTest()
        {
            string initValue = "TestValue";
            GPhotoNumPhotosRemaining target = new GPhotoNumPhotosRemaining(initValue);

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

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