public void GPhotoCommentingEnabledConstructorTest() { string initValue = "TestValue"; GPhotoCommentingEnabled target = new GPhotoCommentingEnabled(initValue); Assert.AreEqual(initValue, target.Value); }
public void GPhotoCommentingEnabledConstructorTest1() { GPhotoCommentingEnabled target = new GPhotoCommentingEnabled(); Assert.IsNotNull(target); Assert.IsTrue(String.IsNullOrEmpty(target.Value)); }