Which Verify.MSTest usings #587
-
We are trying to use the Verify.MSTest NuGet package in a .NET 4.7.2 unit test project. After adding the latest version of the package to the project, we also added But unfortunally we keep getting the error that the "Verify()" method cannot be found. "The name Verify does not exist in the current context". In which class is this method defined? Are we missing some usings on top of the file? Which usings are required to use Verify in a .NET 4.7.2 project? (question also asked on https://stackoverflow.com/questions/73235687/verify-mstest-usings) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
Add |
Beta Was this translation helpful? Give feedback.
Add
<ImplicitUsings>enable</ImplicitUsings>
to the projecthttps://github.com/VerifyTests/Verify#usage