2 instantiations of DerivedAIContent
Microsoft.Extensions.AI.Abstractions.Tests (2)
Utilities\AIJsonUtilitiesTests.cs (2)
324AIContent c = new DerivedAIContent { DerivedValue = 42 }; 362AIContent c = new DerivedAIContent();
9 references to DerivedAIContent
Microsoft.Extensions.AI.Abstractions.Tests (9)
Utilities\AIJsonUtilitiesTests.cs (9)
322options.AddAIContentType<DerivedAIContent>("derivativeContent"); 329Assert.IsType<DerivedAIContent>(deserialized); 335Assert.Throws<InvalidOperationException>(() => AIJsonUtilities.DefaultOptions.AddAIContentType<DerivedAIContent>("derivativeContent")); 359options.AddAIContentType<DerivedAIContent>("text"); 360options.AddAIContentType<DerivedAIContent>("audio"); 370Assert.Throws<ArgumentNullException>(() => ((JsonSerializerOptions)null!).AddAIContentType<DerivedAIContent>("discriminator")); 371Assert.Throws<ArgumentNullException>(() => ((JsonSerializerOptions)null!).AddAIContentType(typeof(DerivedAIContent), "discriminator")); 372Assert.Throws<ArgumentNullException>(() => options.AddAIContentType<DerivedAIContent>(null!)); 373Assert.Throws<ArgumentNullException>(() => options.AddAIContentType(typeof(DerivedAIContent), null!));