public void WeightTest() { PicasaEntry entry = new PicasaEntry(); entry.IsTag = true; TagAccessor target = new TagAccessor(entry); // TODO: Initialize to an appropriate value uint expected = 5; // TODO: Initialize to an appropriate value uint actual; target.Weight = expected; actual = target.Weight; Assert.AreEqual(expected, actual); }
public void TagAccessorConstructorTest() { PicasaEntry entry = new PicasaEntry(); entry.IsTag = true; TagAccessor target = new TagAccessor(entry); Assert.IsNotNull(target); }