-
Notifications
You must be signed in to change notification settings - Fork 77
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
SLVS-1678 Use unique generated compilation database names #5875
SLVS-1678 Use unique generated compilation database names #5875
Conversation
act.Should().Throw<ArgumentNullException>().Which.ParamName.Should().Be("filePath"); | ||
} | ||
|
||
[TestInitialize] |
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.
TestInitialize should be at the top of the class
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.
Some small feedback
src/Integration.Vsix/CFamily/VcxProject/TemporaryCompilationDatabaseHandle.cs
Show resolved
Hide resolved
|
||
private static IAnalysisStatusNotifierFactory CreateDefaultAnalysisStatusNotifier(out IAnalysisStatusNotifier notifier) | ||
private void SetUpDefaultAnalysisStatusNotifier(out IAnalysisStatusNotifier notifier) |
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.
I would remove the out parameter and make the IAnalysisStatusNotifier a field.
|
||
notifier.Received().AnalysisFailed(exception); | ||
} | ||
|
||
private static ISLCoreServiceProvider CreatServiceProvider(out IAnalysisSLCoreService analysisService, bool result = true) | ||
private void SetUpServiceProvider(out IAnalysisSLCoreService analysisService, bool result = true) |
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.
I would remove the out parameter and make the IAnalysisSLCoreService a field.
Quality Gate passedIssues Measures |
8863499
into
feature/cfamily-migration
SLVS-1678