public void GPhotoIdConstructorTest()
        {
            string   initValue = "TestValue";
            GPhotoId target    = new GPhotoId(initValue);

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

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