using MfGames.Gallium; using MfGames.Nitride.Tests; using Xunit; using Xunit.Abstractions; namespace MfGames.Nitride.Json.Tests; public class TextContentJsonTests : NitrideTestBase { public TextContentJsonTests(ITestOutputHelper output) : base(output) { } [Fact] public void NoTextContent() { Entity entity = new(); TestContent? output = entity.GetTextContentJson(); Assert.Null(output); } [Fact] public void SetAndGetContent() { Entity entity = new Entity() .SetTextContentJson(new TestContent { Value = "t1" }); TestContent? output = entity.GetTextContentJson(); Assert.NotNull(output); Assert.Equal("t1", output.Value); } [Fact] public void SetNullRemovesContent() { Entity entity = new Entity() .SetTextContentJson(new TestContent { Value = "t1" }) .SetTextContentJson(null); TestContent? output = entity.GetTextContentJson(); Assert.Null(output); } private class TestContent { public string? Value { get; set; } } }