Example #1
0
 public void GPhotoHeightConstructorTest()
 {
     string initValue = "TestValue"; 
     GPhotoHeight target = new GPhotoHeight(initValue);
     Assert.AreEqual(initValue, target.Value);
 }
Example #2
0
 public void GPhotoHeightConstructorTest1()
 {
     GPhotoHeight target = new GPhotoHeight();
     Assert.IsNotNull(target);
     Assert.IsTrue(String.IsNullOrEmpty(target.Value));
 }