DbMocker 1.9.0
This .NET library simplifies data mocking for UnitTests, to avoid a connection to a relational database.
DbMocker use the standard Microsoft .NET DbConnection object. So, you can mock any toolkit,
including EntityFramework, Dapper or ADO.NET; And for all database servers (SQL Server, Oracle, SQLite).
```
var conn = new MockDbConnection();
conn.Mocks
.When(cmd => cmd.CommandText.Contains("SELECT COUNT(*) FROM EMP"))
.ReturnsScalar(14);
```
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
Install-Package DbMocker -Version 1.9.0
dotnet add package DbMocker --version 1.9.0
<PackageReference Include="DbMocker" Version="1.9.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DbMocker --version 1.9.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Release Notes
https://github.com/Apps72/DbMocker
Dependencies
-
.NETStandard 2.0
- Microsoft.SqlServer.Management.SqlParser (>= 160.20216.14)
Used By
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version History
Version | Downloads | Last updated |
---|---|---|
1.17.0 | 0 | 1/25/2021 |
1.16.0 | 46 | 1/23/2021 |
1.15.0 | 49 | 1/13/2021 |
1.14.0 | 26 | 1/13/2021 |
1.13.0 | 99 | 12/22/2020 |
1.12.0 | 52 | 12/14/2020 |
1.11.0 | 98 | 11/23/2020 |
1.10.0 | 71 | 11/23/2020 |
1.9.0 | 62 | 11/12/2020 |
1.8.0 | 72 | 11/11/2020 |
1.7.0-Preview2 | 214 | 5/20/2020 |
1.7.0-Preview1 | 140 | 5/20/2020 |
1.6.0 | 14,715 | 4/17/2019 |
1.5.0 | 814 | 9/2/2018 |
1.4.1-alpha | 304 | 8/29/2018 |
1.4.0 | 372 | 8/5/2018 |
1.3.0 | 388 | 8/2/2018 |
1.2.0 | 372 | 7/31/2018 |
1.1.0 | 473 | 7/15/2018 |