diff --git a/tests/Dapper.Tests/Providers/FirebirdTests.cs b/tests/Dapper.Tests/Providers/FirebirdTests.cs index ae383b7fb..c5872c228 100644 --- a/tests/Dapper.Tests/Providers/FirebirdTests.cs +++ b/tests/Dapper.Tests/Providers/FirebirdTests.cs @@ -6,6 +6,12 @@ namespace Dapper.Tests.Providers { + /// + /// If Docker Desktop is installed, run the following command to start a container suitable for the tests. + /// + /// docker run -d -p 3050:3050 --name Dapper.Tests.Firebird -e FIREBIRD_DATABASE=database -e ISC_PASSWORD=masterkey jacobalberty/firebird + /// + /// public class FirebirdProvider : DatabaseProvider { public override DbProviderFactory Factory => FirebirdClientFactory.Instance; diff --git a/tests/Dapper.Tests/Providers/MySQLTests.cs b/tests/Dapper.Tests/Providers/MySQLTests.cs index 4b17ff80b..6986c999d 100644 --- a/tests/Dapper.Tests/Providers/MySQLTests.cs +++ b/tests/Dapper.Tests/Providers/MySQLTests.cs @@ -7,6 +7,12 @@ namespace Dapper.Tests { + /// + /// If Docker Desktop is installed, run the following command to start a container suitable for the tests. + /// + /// docker run -d -p 3306:3306 --name Dapper.Tests.MySQL -e MYSQL_DATABASE=tests -e MYSQL_USER=test -e MYSQL_PASSWORD=pass -e MYSQL_ROOT_PASSWORD=pass mysql + /// + /// public sealed class MySqlProvider : DatabaseProvider { public override DbProviderFactory Factory => MySqlConnector.MySqlConnectorFactory.Instance; diff --git a/tests/Dapper.Tests/Providers/PostgresqlTests.cs b/tests/Dapper.Tests/Providers/PostgresqlTests.cs index bc90f1721..3501daa8d 100644 --- a/tests/Dapper.Tests/Providers/PostgresqlTests.cs +++ b/tests/Dapper.Tests/Providers/PostgresqlTests.cs @@ -7,6 +7,12 @@ namespace Dapper.Tests { + /// + /// If Docker Desktop is installed, run the following command to start a container suitable for the tests. + /// + /// docker run -d -p 5432:5432 --name Dapper.Tests.PostgreSQL -e POSTGRES_DB=dappertest -e POSTGRES_USER=dappertest -e POSTGRES_PASSWORD=dapperpass postgres + /// + /// public class PostgresProvider : DatabaseProvider { public override DbProviderFactory Factory => Npgsql.NpgsqlFactory.Instance;