Beispiel #1
0
        public void GPhotoNickNameConstructorTest()
        {
            string         initValue = "TestValue";
            GPhotoNickName target    = new GPhotoNickName(initValue);

            Assert.AreEqual(initValue, target.Value);
        }
Beispiel #2
0
        public void GPhotoNickNameConstructorTest1()
        {
            GPhotoNickName target = new GPhotoNickName();

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