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

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

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