VsixTesting
VsixTesting copied to clipboard
A powerful library to create integration tests for Visual Studio Extensions (VSIX).
`Xunit.Sdk.AsyncTestSyncContext` seems to be the problem and it's only purpose is to support `async void` test methods. So the problem is solved if we dodge it when the test method...
Hi I am trying to add a test that triggers our custom item template wizard, which opens a WPF form to collect user input for template instantiation. How could I...
Currently the library starts tests on background threads by default. The behavior can be changed for an assembly by the following: ```csharp [assembly: VsTestSettings(UIThread = true)] ``` I would propose...
I have been using this library successfully for a year or so to run VS tests on some tooling that I maintain. However as of the latest version of VS...