public void GPhotoCommentCountConstructorTest()
        {
            string             initValue = "TestValue";
            GPhotoCommentCount target    = new GPhotoCommentCount(initValue);

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

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