public void GPhotoNumPhotosConstructorTest()
        {
            string          initValue = "TestValue";
            GPhotoNumPhotos target    = new GPhotoNumPhotos(initValue);

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

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