public void GPhotoPositionConstructorTest()
        {
            string initValue = "TestValue"; 
            GPhotoPosition target = new GPhotoPosition(initValue);
            Assert.AreEqual(initValue, target.Value);

        }
 public void GPhotoPositionConstructorTest1()
 {
     GPhotoPosition target = new GPhotoPosition();
     Assert.IsNotNull(target);
     Assert.IsTrue(String.IsNullOrEmpty(target.Value));
 }