File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed
tests/Dapper.Tests/Providers Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 66
77namespace Dapper . Tests . Providers
88{
9+ /// <summary>
10+ /// If Docker Desktop is installed, run the following command to start a container suitable for the tests.
11+ /// <code>
12+ /// docker run -d -p 3050:3050 --name Dapper.Tests.Firebird -e FIREBIRD_DATABASE=database -e ISC_PASSWORD=masterkey jacobalberty/firebird
13+ /// </code>
14+ /// </summary>
915 public class FirebirdProvider : DatabaseProvider
1016 {
1117 public override DbProviderFactory Factory => FirebirdClientFactory . Instance ;
Original file line number Diff line number Diff line change 77
88namespace Dapper . Tests
99{
10+ /// <summary>
11+ /// If Docker Desktop is installed, run the following command to start a container suitable for the tests.
12+ /// <code>
13+ /// 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
14+ /// </code>
15+ /// </summary>
1016 public sealed class MySqlProvider : DatabaseProvider
1117 {
1218 public override DbProviderFactory Factory => MySqlConnector . MySqlConnectorFactory . Instance ;
Original file line number Diff line number Diff line change 77
88namespace Dapper . Tests
99{
10+ /// <summary>
11+ /// If Docker Desktop is installed, run the following command to start a container suitable for the tests.
12+ /// <code>
13+ /// docker run -d -p 5432:5432 --name Dapper.Tests.PostgreSQL -e POSTGRES_DB=dappertest -e POSTGRES_USER=dappertest -e POSTGRES_PASSWORD=dapperpass postgres
14+ /// </code>
15+ /// </summary>
1016 public class PostgresProvider : DatabaseProvider
1117 {
1218 public override DbProviderFactory Factory => Npgsql . NpgsqlFactory . Instance ;
You can’t perform that action at this time.
0 commit comments