2 instantiations of TestUserInputResponseContent
Microsoft.Extensions.AI.Tests (2)
ChatReduction\SummarizingChatReducerTests.cs (2)
101new ChatMessage(ChatRole.User, [new TestUserInputResponseContent("uir1")]), 190new ChatMessage(ChatRole.User, [new TestUserInputResponseContent("uir2")]),
4 references to TestUserInputResponseContent
Microsoft.Extensions.AI.Tests (4)
ChatReduction\SummarizingChatReducerTests.cs (4)
107Assert.DoesNotContain(msgs, m => m.Contents.Any(c => c is FunctionCallContent or FunctionResultContent or TestUserInputRequestContent or TestUserInputResponseContent)); 126m => Assert.Contains(m.Contents, c => c is TestUserInputResponseContent), 203Assert.DoesNotContain(msgList, m => m.Contents.Any(c => c is FunctionCallContent or FunctionResultContent or TestUserInputRequestContent or TestUserInputResponseContent)); 224Assert.DoesNotContain(resultList, m => m.Contents.Any(c => c is TestUserInputResponseContent));