6 references to AddAIContentType
Microsoft.Extensions.AI.Abstractions.Tests (6)
Utilities\AIJsonUtilitiesTests.cs (6)
324Assert.Throws<ArgumentException>(() => options.AddAIContentType(typeof(int), "discriminator")); 325Assert.Throws<ArgumentException>(() => options.AddAIContentType(typeof(object), "discriminator")); 326Assert.Throws<ArgumentException>(() => options.AddAIContentType(typeof(ChatMessage), "discriminator")); 353Assert.Throws<ArgumentNullException>(() => ((JsonSerializerOptions)null!).AddAIContentType(typeof(DerivedAIContent), "discriminator")); 355Assert.Throws<ArgumentNullException>(() => options.AddAIContentType(typeof(DerivedAIContent), null!)); 356Assert.Throws<ArgumentNullException>(() => options.AddAIContentType(null!, "discriminator"));