I am trying to write a unit test for testing a private static method. That is why i need to use PrivateType class, which is in Microsoft.VisualStudio.TestTools.UnitTesting namespace.
Somewhere i found, that it is part of "Microsoft.VisualStudio.QualityTools.UnitTestFramework", but adding:
<ItemGroup>
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" />
</ItemGroup>
did not help at all. Any ideas how to solve this?
P.S. I am using VSCode as IDE and XUnit as testing framework.