示例#1
0
        public void GPhotoUserConstructorTest()
        {
            string     initValue = "TestValue";
            GPhotoUser target    = new GPhotoUser(initValue);

            Assert.AreEqual(initValue, target.Value);
        }
示例#2
0
        public void GPhotoUserConstructorTest1()
        {
            GPhotoUser target = new GPhotoUser();

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