1 instantiation of TestDto
Aspire.Hosting.RemoteHost.Tests (1)
AtsMarshallerTests.cs (1)
552
var dto = new
TestDto
{ Name = "test", Count = 10 };
5 references to TestDto
Aspire.Hosting.RemoteHost.Tests (5)
AtsMarshallerTests.cs (5)
19
DtoTypes = [new AtsDtoTypeInfo { TypeId = "test/TestDto", Name = "TestDto", ClrType = typeof(
TestDto
), Properties = [] }],
540
var result = marshaller.UnmarshalFromJson(json, typeof(
TestDto
), context);
543
var
dto = Assert.IsType<
TestDto
>(result);
552
var
dto = new TestDto { Name = "test", Count = 10 };