Unit test extension in Visual Studio 2017

I had a problem migrating to Visual Studio 2017. Following the tutorial at https://blogs.msdn.microsoft.com/vstsqualitytools/2009/09/04/extending-the-visual-studio-unit-test-type-part- 1 / we have implemented a custom test derived from TestClassExtensionAttribute. As described at the end of the manual, a new attribute must be registered in the registry at

[HKEY_CURRENT_USER \ SOFTWARE \ Microsoft \ VisualStudio \ 10 .0_Config \ EnterpriseTools \ QualityTools \ TestTypes \ {13cdc9d9-ddb5-4fa4-a97d-d965ccfc6d4b \ TestTypeExtensions \ DemoTestClassAbute]

The problem is that Visual Studio 2017 does not have “classic” items in the registry. What do I need to do to retry user unit tests?

+4
source share

Source: https://habr.com/ru/post/1672330/


All Articles