5 references to GetRequiredService
Microsoft.Extensions.AI.Abstractions.Tests (5)
Embeddings\EmbeddingGeneratorExtensionsTests.cs (5)
25Assert.Throws<ArgumentNullException>("serviceType", () => generator.GetRequiredService(null!)); 63Assert.Equal("null key", generator.GetRequiredService(typeof(string))); 66Assert.Equal("non-null key", generator.GetRequiredService(typeof(string), "key")); 69Assert.Throws<InvalidOperationException>(() => generator.GetRequiredService(typeof(object))); 72Assert.Throws<InvalidOperationException>(() => generator.GetRequiredService(typeof(object), "key"));