-
Notifications
You must be signed in to change notification settings - Fork 325
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
Minor optimizations #3687
Minor optimizations #3687
Conversation
src/Microsoft.TestPlatform.Common/Logging/InternalTestLoggerEvents.cs
Outdated
Show resolved
Hide resolved
src/Microsoft.TestPlatform.CommunicationUtilities/JsonDataSerializer.cs
Outdated
Show resolved
Hide resolved
{ | ||
#if DEBUG && (NETFRAMEWORK || NET || NETSTANDARD2_0_OR_GREATER) |
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.
Seemed to work okay, but not worth the risk of breaking this in production.
src/Microsoft.TestPlatform.CoreUtilities/Utilities/MulticastDelegateUtilities.cs
Show resolved
Hide resolved
RunSettingsUtilities.CreateAndInitializeRunSettings(discoveryCriteria.RunSettings), | ||
discoveryCriteria.TestCaseFilter, | ||
_sessionMessageLogger); | ||
var runSettings = RunSettingsUtilities.CreateAndInitializeRunSettings(discoveryCriteria.RunSettings); |
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.
This did a lot in the the method call. This way it is much easier to see what is passed on.
c43015c
to
aec5bcc
Compare
Description
Some minor optimizations