Example #1
0
        public void GPhotoCommentingEnabledConstructorTest()
        {
            string initValue = "TestValue";
            GPhotoCommentingEnabled target = new GPhotoCommentingEnabled(initValue);

            Assert.AreEqual(initValue, target.Value);
        }
Example #2
0
        public void GPhotoCommentingEnabledConstructorTest1()
        {
            GPhotoCommentingEnabled target = new GPhotoCommentingEnabled();

            Assert.IsNotNull(target);
            Assert.IsTrue(String.IsNullOrEmpty(target.Value));
        }