void WithContent() { var value = new TagValue(Tag, 2); Expect(value.Tag).Is(Tag); Expect(value.Content).Is(2); ExpectNot(value.IsUnset); Expect(value.IsSet); }
void WithoutContent() { var value = new TagValue(Tag); Expect(value.Tag).Is(Tag); Expect(value.Content).Is(Tag.ResolveDefault()); Expect(value.IsUnset); ExpectNot(value.IsSet); }