public void GPhotoBytesUsedConstructorTest() { string initValue = "TestValue"; GPhotoBytesUsed target = new GPhotoBytesUsed(initValue); Assert.AreEqual(initValue, target.Value); }
public void GPhotoBytesUsedConstructorTest1() { GPhotoBytesUsed target = new GPhotoBytesUsed(); Assert.IsNotNull(target); Assert.IsTrue(String.IsNullOrEmpty(target.Value)); }