public void GPhotoSizeConstructorTest() { string initValue = "TestValue"; GPhotoSize target = new GPhotoSize(initValue); Assert.AreEqual(initValue, target.Value); }
public void GPhotoSizeConstructorTest1() { GPhotoSize target = new GPhotoSize(); Assert.IsNotNull(target); Assert.IsTrue(String.IsNullOrEmpty(target.Value)); }