public void GPhotoRotationConstructorTest()
        {
            string         initValue = "TestValue";
            GPhotoRotation target    = new GPhotoRotation(initValue);

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

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