Exemple #1
0
        public void GPhotoLocationConstructorTest()
        {
            string         initValue = "TestValue";
            GPhotoLocation target    = new GPhotoLocation(initValue);

            Assert.AreEqual(initValue, target.Value);
        }
Exemple #2
0
        public void GPhotoLocationConstructorTest1()
        {
            GPhotoLocation target = new GPhotoLocation();

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