public void GPhotoWeightConstructorTest()
        {
            string       initValue = "TestValue";
            GPhotoWeight target    = new GPhotoWeight(initValue);

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

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