7 references to ChatClientExtensions
Microsoft.Extensions.AI.Abstractions.Tests (7)
ChatCompletion\ChatClientExtensionsTests.cs (7)
17
Assert.Throws<ArgumentNullException>("client", () =>
ChatClientExtensions
.GetService<object>(null!));
23
Assert.Throws<ArgumentNullException>("client", () =>
ChatClientExtensions
.GetRequiredService(null!, typeof(string)));
24
Assert.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!);