예제 #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));
        }