IntegrationTestingLibraryForSqlServer 1.5.0
See the version list below for details.
dotnet add package IntegrationTestingLibraryForSqlServer --version 1.5.0
NuGet\Install-Package IntegrationTestingLibraryForSqlServer -Version 1.5.0
<PackageReference Include="IntegrationTestingLibraryForSqlServer" Version="1.5.0" />
paket add IntegrationTestingLibraryForSqlServer --version 1.5.0
#r "nuget: IntegrationTestingLibraryForSqlServer, 1.5.0"
// Install IntegrationTestingLibraryForSqlServer as a Cake Addin #addin nuget:?package=IntegrationTestingLibraryForSqlServer&version=1.5.0 // Install IntegrationTestingLibraryForSqlServer as a Cake Tool #tool nuget:?package=IntegrationTestingLibraryForSqlServer&version=1.5.0
Provides helper functions for setting up and tearing down SQL Server database fakes for use in integration testing.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.3.0 | 1,366 | 6/30/2017 |
2.2.0 | 957 | 6/29/2017 |
2.1.0 | 1,138 | 7/19/2016 |
2.0.1 | 1,030 | 7/7/2016 |
2.0.0 | 989 | 7/7/2016 |
1.5.9 | 1,057 | 3/23/2016 |
1.5.8 | 1,154 | 11/11/2015 |
1.5.7 | 1,197 | 11/10/2015 |
1.5.6 | 1,039 | 10/22/2015 |
1.5.5 | 1,090 | 10/20/2015 |
1.5.4 | 1,006 | 10/14/2015 |
1.5.3 | 1,029 | 10/14/2015 |
1.5.2 | 1,004 | 10/13/2015 |
1.5.1 | 1,022 | 10/12/2015 |
1.5.0 | 973 | 10/12/2015 |
1.4.2 | 1,154 | 10/8/2015 |
1.4.1 | 1,169 | 10/8/2015 |
1.4.0 | 1,127 | 9/25/2015 |
1.3.1 | 1,037 | 9/17/2015 |
1.2.0 | 1,414 | 9/11/2015 |
1.1.0 | 1,714 | 8/5/2015 |
1.0.1 | 1,197 | 7/23/2015 |
1.5.0
- ViewCheck is now complete and works by comparing the Data Reader schema with an expected definition
- Added null argument checks into TableDefinitionExtensions
- Added support for maximum column size
- Added VerifyMatch methods to TableData for easier comparison assertion
1.4.2
- Added some more support for schema name in views plus some more tests
1.4.1
- Added support for schema name in tables and views
1.4.0
- TableData objects can now be compared; different rulesets can be applied for column, row and value comparison
- Added Data Reader import class: DataReaderPopulatedTableData
- Added Specflow friendly import class: CollectionPopulatedTableData
- TableDefinition Insert method will now only populate columns from TableDefinition if they are not already set
1.3.1
- Breaking change: Extension VerifyEqual on TableDefinition now named VerifyMatch to make it consistent with TableDefinition extension.
- Renamed ViewDefinition to TableBackedViewDefinition in readiness for ViewCheck.
- TableDefinition Equal method now handles comparing columns in a different order.
1.3.0
- Added support for partial table matches; for example if only two columns are used by the application but the table has more.
- Breaking change: Extension VerifyEqual on TableDefinition now named VerifyMatch to make it clearer that it is checked against a 'real' table.
1.2.0
- Views can now be created as a front to a table; this was simpler than duplicating all the create logic for views.
1.1.0
- Added support for Identity constraint on columns.
1.0.0
- Initial version.