2 instantiations of TodoJsonChild
Microsoft.AspNetCore.Http.Results.Tests (2)
HttpResultsHelperTests.cs (2)
152
var value = new
TodoJsonChild
()
229
yield return new
TodoJsonChild
() { Id = 3, IsComplete = true, Name = "Three", Child = "ThreeChild" };
7 references to TodoJsonChild
Microsoft.AspNetCore.Http.Results.Tests (7)
HttpResultsHelperTests.cs (7)
152
var
value = new TodoJsonChild()
172
var
body = JsonSerializer.Deserialize<
TodoJsonChild
>(responseBodyStream.ToArray(), serializerOptions);
214
var
three = Assert.IsType<
TodoJsonChild
>(body[2]);
281
[JsonDerivedType(typeof(
TodoJsonChild
), nameof(
TodoJsonChild
))]