4 references to GetRequiredService
Microsoft.Extensions.AI.Abstractions.Tests (4)
Files\HostedFileClientExtensionsTests.cs (4)
537var result = client.GetRequiredService(typeof(string)); 548Assert.Throws<InvalidOperationException>(() => client.GetRequiredService(typeof(string))); 555Assert.Throws<ArgumentNullException>("client", () => client.GetRequiredService(typeof(string))); 562Assert.Throws<ArgumentNullException>("serviceType", () => client.GetRequiredService(null!));