-
Notifications
You must be signed in to change notification settings - Fork 350
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding .NET Core unit tests that integrate .NET Standard Libraries (#803
) * Initial add of unit tests of .NET Standard libraries in .NET Core framework - Adding unit tests for .NET Standard libraries in the .NET Core framework. These include Microsoft.Spatial and Microsoft.OData.Edm - Making some changes to the unit test code due to breaking changes in .NET Core framework * Update Edm and Spatial tests - All 787 enabled tests pass (1 test skipped per prior configuration) * Adding Microsoft.OData.Core unit tests on .NET Core - Creating new Microsoft.OData.Core unit test .NET Core .xproj to test integration with .NET Standard libraries - Assume any modifications made to the test files are due to APIs absent from .NET Core and were in .NET Framework. Other modifications are made due to changes in the test dependencies (which were also caused by their migrations to .NET Core) * Removing E2E tests from .NET Standard test solution as the tests are currently not runnable. * Updating nuspec files to correct path for QueryTokenKind.cs
- Loading branch information
1 parent
0b54111
commit 6673874
Showing
102 changed files
with
44,817 additions
and
857 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="EntityFramework" version="5.0.0"/> | ||
<package id="FluentAssertions" version="2.0.0.1" /> | ||
<package id="ApprovalTests" version="1.6" /> | ||
<package id="Microsoft.MadMan" version="3.1.112712.0" /> | ||
<package id="EntityFramework" version="4.3.1" /> | ||
<package id="StyleCop.MSBuild" version="4.7.49" /> | ||
<package id="EntityFramework" version="5.0.0"/> | ||
<package id="FluentAssertions" version="2.0.0.1" /> | ||
<package id="FluentAssertions" version="4.19.2" /> | ||
<package id="Microsoft.Extensions.DependencyInjection" version="1.0.0" /> | ||
<package id="Microsoft.Extensions.DependencyInjection.Abstractions" version="1.0.0" /> | ||
<package id="Microsoft.Hadoop.Avro" version="1.4.0.0" /> | ||
<package id="Newtonsoft.Json" version="6.0.5" /> | ||
<package id="Microsoft.MadMan" version="3.1.112712.0" /> | ||
<package id="Microsoft.OData.StyleCop" version="1.0.0" /> | ||
<package id="Newtonsoft.Json" version="6.0.5" /> | ||
<package id="System.Text.Encoding.Extensions" version="4.0.11" /> | ||
<package id="StyleCop.MSBuild" version="4.7.49" /> | ||
<package id="xunit" version="2.1.0" /> | ||
<package id="xunit.abstractions" version="2.0.0" /> | ||
<package id="xunit.assert" version="2.1.0" /> | ||
<package id="xunit.core" version="2.1.0" /> | ||
<package id="xunit.extensibility.core" version="2.1.0" /> | ||
<package id="xunit.extensibility.execution" version="2.1.0" /> | ||
<package id="xunit.runner.visualstudio" version="2.1.0" /> | ||
</packages> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.