Reputation: 857
I now have successfully run tests using Resharper in 64-bit mode. I created a test checking memory usage using
dotMemory.Check(memory => ...);
To run this test using the profiler, dotMemory extended the contextmenu of a test:
However, when using this option the dotMemory test runner wrapper seems to ignore the Resharper settings/ test.runsettings file.
How can I run MSTest tests using the dotMemory Unit wrapper in 64-bit mode from the Resharper plugin in Visual Studio?
Upvotes: 1
Views: 303
Reputation: 2508
Use "Options->Platform" chooser on the toolbar of Unit test session window to set an architecture.
R#->Options->Unit Testing->Default platform architecture only controls with what value of "Options->Platform" a new unit test session will be created.
Upvotes: 1