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