Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Pomelo.EntityFrameworkCore.MySql.FunctionalTests.Query;

public class EntitySplittingQueryMySqlTest(NonSharedFixture fixture) : EntitySplittingQueryTestBase(fixture)
{
public EntitySplittingQueryMySqlTest(ITestOutputHelper testOutputHelper) : this(new NonSharedFixture())
internal EntitySplittingQueryMySqlTest(ITestOutputHelper testOutputHelper) : this(new NonSharedFixture())
{
// Fixture.TestSqlLoggerFactory.SetTestOutputHelper(testOutputHelper);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class TestMySqlRetryingExecutionStrategy : MySqlRetryingExecutionStrategy
42019 // CREATE DATABASE operation failed
};

public TestMySqlRetryingExecutionStrategy()
internal TestMySqlRetryingExecutionStrategy()
: base(
new DbContext(
new DbContextOptionsBuilder()
Expand All @@ -30,12 +30,12 @@ public TestMySqlRetryingExecutionStrategy()
{
}

public TestMySqlRetryingExecutionStrategy(DbContext context)
internal TestMySqlRetryingExecutionStrategy(DbContext context)
: base(context, DefaultMaxRetryCount, DefaultMaxDelay, _additionalErrorNumbers)
{
}

public TestMySqlRetryingExecutionStrategy(DbContext context, TimeSpan maxDelay)
internal TestMySqlRetryingExecutionStrategy(DbContext context, TimeSpan maxDelay)
: base(context, DefaultMaxRetryCount, maxDelay, _additionalErrorNumbers)
{
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.ComponentModel;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore.TestUtilities.Xunit;
Expand All @@ -13,6 +14,7 @@ namespace Pomelo.EntityFrameworkCore.MySql.FunctionalTests.TestUtilities.Xunit
public sealed class MySqlConditionalFactTestCase : XunitTestCase
{
[Obsolete("Called by the de-serializer; should only be called by deriving classes for de-serialization purposes")]
[EditorBrowsable(EditorBrowsableState.Never)]
public MySqlConditionalFactTestCase()
{
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.ComponentModel;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore.TestUtilities.Xunit;
Expand All @@ -13,6 +14,7 @@ namespace Pomelo.EntityFrameworkCore.MySql.FunctionalTests.TestUtilities.Xunit
public sealed class MySqlConditionalTheoryTestCase : XunitTheoryTestCase
{
[Obsolete("Called by the de-serializer; should only be called by deriving classes for de-serialization purposes")]
[EditorBrowsable(EditorBrowsableState.Never)]
public MySqlConditionalTheoryTestCase()
{
}
Expand Down
Loading