You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Installing the NuGet package for FLEE with a version above 1.05 makes my unit test to either give the result: Inconclusive, or the tests are not found at all in the project by ReSharper or Visual Studio test runners.
I narrowed this down to the version of System.Reflection. From 1.05 onwards version 4.1.2.0 is used and an assembly binding for this is added to each project that references the project FLEE is installed in.
This assembly binding caused my project to not find the unit tests with the error message:
The given assembly name or codebase was invalid. (Exception from HRESULT: 0x80131047)
Downgrading to 1.05 and changing the assembly binding redirect to 4.0.0.0 fixed the issue for me
Using:
Visual Studio 2017 community edition
ASP.NET Framework 4.7.1
ReSharper 2018.2.2
Windows 10
MsTest V2 1.3.2
The text was updated successfully, but these errors were encountered:
Installing the NuGet package for FLEE with a version above 1.05 makes my unit test to either give the result: Inconclusive, or the tests are not found at all in the project by ReSharper or Visual Studio test runners.
I narrowed this down to the version of System.Reflection. From 1.05 onwards version 4.1.2.0 is used and an assembly binding for this is added to each project that references the project FLEE is installed in.
This assembly binding caused my project to not find the unit tests with the error message:
Downgrading to 1.05 and changing the assembly binding redirect to 4.0.0.0 fixed the issue for me
Using:
Visual Studio 2017 community edition
ASP.NET Framework 4.7.1
ReSharper 2018.2.2
Windows 10
MsTest V2 1.3.2
The text was updated successfully, but these errors were encountered: