public void GPhotoAlbumIdConstructorTest()
        {
            string        initValue = "TestValue";
            GPhotoAlbumId target    = new GPhotoAlbumId(initValue);

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

            Assert.IsNotNull(target);
        }