3 references to LoggingTextToSpeechClient
Microsoft.Extensions.AI (1)
TextToSpeech\LoggingTextToSpeechClientBuilderExtensions.cs (1)
52
var client = new
LoggingTextToSpeechClient
(innerClient, loggerFactory.CreateLogger(typeof(LoggingTextToSpeechClient)));
Microsoft.Extensions.AI.Tests (2)
TextToSpeech\LoggingTextToSpeechClientTests.cs (2)
20
Assert.Throws<ArgumentNullException>("innerClient", () => new
LoggingTextToSpeechClient
(null!, NullLogger.Instance));
21
Assert.Throws<ArgumentNullException>("logger", () => new
LoggingTextToSpeechClient
(new TestTextToSpeechClient(), null!));