예제 #1
0
 public void GPhotoCommentCountConstructorTest()
 {
     string initValue = "TestValue"; 
     GPhotoCommentCount target = new GPhotoCommentCount(initValue);
     Assert.AreEqual(initValue, target.Value);
 }
예제 #2
0
 public void GPhotoCommentCountConstructorTest1()
 {
     GPhotoCommentCount target = new GPhotoCommentCount();
     Assert.IsNotNull(target);
     Assert.IsTrue(String.IsNullOrEmpty(target.Value));
 }