Exemplo n.º 1
0
        void WithContent()
        {
            var value = new TagValue(Tag, 2);

            Expect(value.Tag).Is(Tag);
            Expect(value.Content).Is(2);
            ExpectNot(value.IsUnset);
            Expect(value.IsSet);
        }
Exemplo n.º 2
0
        void WithoutContent()
        {
            var value = new TagValue(Tag);

            Expect(value.Tag).Is(Tag);
            Expect(value.Content).Is(Tag.ResolveDefault());
            Expect(value.IsUnset);
            ExpectNot(value.IsSet);
        }