diff --git a/src/Testcontainers.Xunit/ContainerFixture.cs b/src/Testcontainers.Xunit/ContainerFixture.cs index 6558678dd..610216434 100644 --- a/src/Testcontainers.Xunit/ContainerFixture.cs +++ b/src/Testcontainers.Xunit/ContainerFixture.cs @@ -5,6 +5,7 @@ namespace Testcontainers.Xunit; /// See Shared Context between Tests from xUnit.net documentation for more information about fixtures. /// A logger is automatically configured to write diagnostic messages to xUnit's . /// +/// An optional where the logs are written to. Pass null to ignore logs. /// The builder entity. /// The container entity. [PublicAPI] diff --git a/src/Testcontainers.Xunit/ContainerTest.cs b/src/Testcontainers.Xunit/ContainerTest.cs index 10fa3bc16..be7519ff1 100644 --- a/src/Testcontainers.Xunit/ContainerTest.cs +++ b/src/Testcontainers.Xunit/ContainerTest.cs @@ -4,6 +4,8 @@ namespace Testcontainers.Xunit; /// Base class for tests needing a container per test method. /// A logger is automatically configured to write messages to xUnit's . /// +/// An optional where the logs are written to. Pass null to ignore logs. +/// An optional callback to configure the container. /// The builder entity. /// The container entity. [PublicAPI] diff --git a/src/Testcontainers.Xunit/IDbContainerTestMethods.cs b/src/Testcontainers.Xunit/IDbContainerTestMethods.cs index 07a003a7f..a45e032c2 100644 --- a/src/Testcontainers.Xunit/IDbContainerTestMethods.cs +++ b/src/Testcontainers.Xunit/IDbContainerTestMethods.cs @@ -26,7 +26,7 @@ internal interface IDbContainerTestMethods /// /// It is the responsibility of the caller to properly dispose the connection returned by this method. Failure to do so may result in a connection leak. /// - /// A new, open connection to the database represented. + /// A new, open connection to the database. DbConnection OpenConnection(); ///