Merge branch 'master' into master

This commit is contained in:
Joey Robichaud 2019-10-29 14:03:04 -07:00 коммит произвёл GitHub
Родитель 16e04f0645 fe9a2f86bd
Коммит 2bc8b2b4ca
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -335,6 +335,8 @@ class DiagnosticsProvider extends AbstractSupport {
let message = `${quickFix.Text} [${quickFix.Projects.map(n => this._asProjectLabel(n)).join(', ')}]`;
let diagnostic = new vscode.Diagnostic(toRange(quickFix), message, display.severity);
diagnostic.source = 'csharp';
diagnostic.code = quickFix.Id;
if (display.isFadeout) {
diagnostic.tags = [vscode.DiagnosticTag.Unnecessary];

Просмотреть файл

@ -44,7 +44,7 @@ suite(`DiagnosticProvider: ${testAssetWorkspace.description}`, function () {
test("Return unnecessary tag in case of unnesessary using", async function () {
let result = await poll(() => vscode.languages.getDiagnostics(fileUri), 15*1000, 500);
let cs8019 = result.find(x => x.message.includes("CS8019"));
let cs8019 = result.find(x => x.source == "csharp" && x.code == "CS8019");
expect(cs8019).to.not.be.undefined;
expect(cs8019.tags).to.include(vscode.DiagnosticTag.Unnecessary);
});
@ -53,8 +53,8 @@ suite(`DiagnosticProvider: ${testAssetWorkspace.description}`, function () {
this.skip(); // Remove this once https://github.com/OmniSharp/omnisharp-roslyn/issues/1458 is resolved.
let result = await poll(() => vscode.languages.getDiagnostics(fileUri), 15*1000, 500);
let ide0005 = result.find(x => x.message.includes("IDE0005"));
expect(ide0005).to.not.be(undefined);
let ide0005 = result.find(x => x.source == "csharp" && x.code == "IDE0005");
expect(ide0005).to.not.be.undefined;
expect(ide0005.tags).to.include(vscode.DiagnosticTag.Unnecessary);
});
});