Esempio n. 1
0
 public void GPhotoIdConstructorTest()
 {
     string initValue = "TestValue"; 
     GPhotoId target = new GPhotoId(initValue);
     Assert.AreEqual(initValue, target.Value);
 }
Esempio n. 2
0
 public void GPhotoIdConstructorTest1()
 {
     GPhotoId target = new GPhotoId();
     Assert.IsNotNull(target);
     Assert.IsTrue(String.IsNullOrEmpty(target.Value));
 }