Beispiel #1
0
        public void GPhotoThumbnailConstructorTest()
        {
            string initValue = "TestValue"; 
            GPhotoThumbnail target = new GPhotoThumbnail(initValue);
            Assert.AreEqual(initValue, target.Value);

        }
Beispiel #2
0
 public void GPhotoThumbnailConstructorTest1()
 {
     GPhotoThumbnail target = new GPhotoThumbnail();
     Assert.IsNotNull(target);
     Assert.IsTrue(String.IsNullOrEmpty(target.Value));
 }