7 references to ChatClientExtensions
Microsoft.Extensions.AI.Abstractions.Tests (7)
ChatCompletion\ChatClientExtensionsTests.cs (7)
17Assert.Throws<ArgumentNullException>("client", () => ChatClientExtensions.GetService<object>(null!)); 23Assert.Throws<ArgumentNullException>("client", () => ChatClientExtensions.GetRequiredService(null!, typeof(string))); 24Assert.Throws<ArgumentNullException>("client", () => ChatClientExtensions.GetRequiredService<object>(null!)); 77_ = ChatClientExtensions.GetResponseAsync(null!, "hello"); 82_ = ChatClientExtensions.GetResponseAsync(new TestChatClient(), (ChatMessage)null!); 91_ = ChatClientExtensions.GetStreamingResponseAsync(null!, "hello"); 96_ = ChatClientExtensions.GetStreamingResponseAsync(new TestChatClient(), (ChatMessage)null!);