Open paulodero opened 4 years ago
@sailro may be able to help you out, but this library is no longer maintained.
The broken links to examples in PTVS can be fixed by replacing "master" with "v3.2.1", but that branch is nearly five years old, which is about when we stopped using it. But the examples and code wrapping DTE and Windows Automation commands may be helpful still.
The basic functionality is included in Microsoft.VSSDK.TestHostFramework.dll
(in PublicAssemblies in your install), which should let you annotate tests to launch VS and give you the DTE object. I think the rest of the framework used at Microsoft is still internal-only.
Hello @paulodero, I'm going to try to add a minimal sample soon to this repo.
@paulodero I would highly recommend using https://github.com/josetr/VsixTesting for this. It is much easier to set up, and the repository contains example tests.
I would like to know if possible how I can use this tool to perform some integration testing for a visual studio extension. I will need to write end to end tests from the time a user starts interacting with the visual studio extension, including UI tests. I have checked for any documentation online with no success.