public void GPhotoPhotoIdConstructorTest()
        {
            string        initValue = "TestValue";
            GPhotoPhotoId target    = new GPhotoPhotoId(initValue);

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

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