You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TODO: explore how we can move from parameterless contrsuctor to explicit creation of the builders.
Idea: first step = new `protected virtual TBuilderEntity Configure()` that use reflection and obsolete the Configure method that takes a builder. Next step = make the new Configure() method abstract instead of virtual.
Copy file name to clipboardExpand all lines: src/Testcontainers.Xunit/ContainerTest.cs
+3-7Lines changed: 3 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -5,14 +5,10 @@ namespace Testcontainers.Xunit;
5
5
/// A logger is automatically configured to write messages to xUnit's <see cref="ITestOutputHelper" />.
6
6
/// </summary>
7
7
/// <param name="testOutputHelper">An optional <see cref="ITestOutputHelper" /> where the logs are written to. Pass <c>null</c> to ignore logs.</param>
8
-
/// <param name="configure">An optional callback to configure the container.</param>
0 commit comments