public void GPhotoHeightConstructorTest()
        {
            string       initValue = "TestValue";
            GPhotoHeight target    = new GPhotoHeight(initValue);

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

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