Esempio n. 1
0
        public void GPhotoWidthConstructorTest()
        {
            string      initValue = "TestValue";
            GPhotoWidth target    = new GPhotoWidth(initValue);

            Assert.AreEqual(initValue, target.Value);
        }
Esempio n. 2
0
        public void GPhotoWidthConstructorTest1()
        {
            GPhotoWidth target = new GPhotoWidth();

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