-
Notifications
You must be signed in to change notification settings - Fork 323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added method to look for new api in fakes datacollector #2339
Conversation
bee8386
to
d443bee
Compare
@vritant24 is this ready to merge? the changes look good to go and I approved. If you will still work on it please mark it as work in progress by prefixing the name with |
Thanks for the review. I haven't yet merged it because the API on the other side hasn't been finalized and could possibly change. I'll update the PR name |
….Internal.TestPlatform.Extensions" nuget pacakge. This would mean that the TP vsix would not drop this dependency any more. The Fakes vsix that builds in the VSUT repo would be dropping it instead. For the TestPlatform tooling nuget however which ships with the Fakes dependency, I'm pulling in the latest from the vsunittesting myget feed and packaging that up.
4b88eb1
to
746bc17
Compare
{ | ||
if (EqtTrace.IsInfoEnabled) | ||
{ | ||
EqtTrace.Info("Failed to create newly implemented Fakes Configurator. Reason:{0} ", ex); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this show up in test platform diagnostic logs? Its probably used in some places in this file already but eqttrace logs IIRC are enabled and viewed differently from how we enable TP diagnostic logs in general.
…ckages from the dev build.
….Internal.TestPlatform.Extensions" nuget pacakge. This would mean that the TP vsix would not drop this dependency any more. The Fakes vsix that builds in the VSUT repo would be dropping it instead. For the TestPlatform tooling nuget however which ships with the Fakes dependency, I'm pulling in the latest from the vsunittesting myget feed and packaging that up.
…rosoft/vstest into dev/vrbhardw/fakes_dc_update
Description
The new Fakes Implementation will need a separate data collector for handling new scenarios that support .NET Core and Netstandard.
Previously,
TestWindow.Fakes
andVSTest
were making the same check and passing the same data collector configuration (FriendlyName
,DataCollectorURi
,DataCollectorAssemblyQualifiedName
) toTestPlatform.Fakes
. The creation of that config will be moved intoTestPlatform.Fakes
, and the decision to use the new data collector will also be made there, which introduces the new API.