-
Notifications
You must be signed in to change notification settings - Fork 14
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
Not all test results shown in test explorer, when multiple tests fail and fixture contains 10 or more #1625
Comments
Hi @JoeRobich, does the example code you provided serve as a good reproduction of the issue? This has been reported in the following GitHub issues: #1490 and #996 |
@JoeRobich I verified that this sample code reproes the issue. Working on this issue this week. |
Hi @ocallesp, better to tag me since I'm the original poster of the problem, I just posted it to the wrong project :) Glad to hear that you've been able to reproduce the issue this way! If you have any questions, please let me know! Also, my apologies for the duplicates, I tried searching but guess I called it differently from the other people Let me also add: if you remove one of the tests, i.e. there are 9 tests in the file in total, then all tests show up. This might help point you in the right direction. |
Fixed. It will available in the next release |
Hi @ocallesp, great news! Could you share what the issue was precisely? I'm curious :) If that's not possible, then that's fine of course. Thanks for fixing this! |
@sorama-maarten, we identified a bug in the VS Code API that occurs when it’s invoked multiple times on the same file. This issue was encountered when processing failed test results. We resolved it by implementing a caching mechanism to prevent repeated calls from triggering the bug. |
This issue originally reported at dotnet/vscode-csharp#7811
Type: Bug
Issue Description
I have an NUnit fixture with 10 tests in them. If more than 1 of them fails (in my example, all fail), and there are at least 10 tests in total, then the test explorer will not show the run results for all tests. In the output of the test explorer, however, the test explorer indicates that it saw 10 tests and that they failed.
Steps to Reproduce
Create an NUnit project (NUnit 4.2.2, NUnit3TestAdapter 4.6.0, Microsoft.NET.Test.Sdk 17.6.0) with the following test file:
Then run all tests in the file at once, either by:
Expected Behavior
All tests in the test explorer show failure
Actual Behavior
Only some tests show failure, the other tests do not show that they have run. In my case, Test1, Test9 and Test10 show failure.
If those other tests have run before, they will continue to show their previous test result; e.g. if Test5 passed before but has been set to fail, it will continue to show "pass" in the test explorer.
C# Dev Kit - Test Explorer
C# log
C# LSP Trace Logs
[Trace - 2:59:14 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] /home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs found in workspace Host"
}
[Trace - 2:59:14 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:14.796][Start]textDocument/_vs_getProjectContexts"
}
[Trace - 2:59:14 PM] Received response 'textDocument/_vs_getProjectContexts - (1899)' in 5ms.
Result: {
"_vs_projectContexts": [
{
"_vs_label": "VSCodeTestExplorerBugExample",
"_vs_id": "5b1f9d31-7f5f-4440-94ff-221b420ccde1|VSCodeTestExplorerBugExample",
"_vs_kind": 2,
"_vs_is_miscellaneous": false
}
],
"_vs_defaultIndex": 0
}
[Trace - 2:59:14 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:14.797][End]textDocument/_vs_getProjectContexts"
}
[Trace - 2:59:16 PM] Sending request 'workspace/buildOnlyDiagnosticIds - (1900)'.
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] No request parameters given, using default language handler"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.317][Start]workspace/buildOnlyDiagnosticIds"
}
[Trace - 2:59:16 PM] Received response 'workspace/buildOnlyDiagnosticIds - (1900)' in 4ms.
Result: {
"ids": [
"CS1607",
"CS0169",
"CS0414",
"CS0067",
"CS0649",
"CS0656",
"CS0518",
"CS5001",
"CS0028",
"CS0017",
"CS7022",
"CS1556",
"CS0402",
"CS1558",
"CS1555",
"CS8892",
"CS0148",
"CS8078",
"CS7038",
"CS0204",
"CS0570",
"CS8004",
"CS8006",
"CS8005",
"CS8008",
"CS4007",
"CS8178",
"CS4013",
"CS1969",
"CS9026",
"CS9068",
"CS9144",
"CS9148",
"CS9149",
"CS9153",
"CS9154",
"CS9155",
"CS9156",
"CS9158",
"CS9159",
"CS9160",
"CS9163",
"CS9177",
"CS9178",
"CS9207",
"CS8419",
"CS8420",
"CS9217",
"CA1016",
"CA1014",
"CA1017",
"CA1017",
"CA1724",
"CA1724",
"CA1501",
"CA1502",
"CA1505",
"CA1506",
"CA1509",
"CA1852",
"CA5360",
"CA5399",
"CA5400",
"CA5380",
"CA5381",
"CA5367",
"CA5401",
"CA5402",
"CA2301",
"CA2302",
"CA2321",
"CA2322",
"CA2329",
"CA2330",
"CA2311",
"CA2312",
"CA2327",
"CA2328",
"CA5387",
"CA5388",
"CA5362",
"CA5396",
"CA5391",
"CA5395",
"CA5382",
"CA5383",
"CA1812",
"CA1824",
"RS1022",
"RS1022",
"RS1010",
"RS1011",
"RS1016",
"RS1019",
"RS2002",
"RS2003",
"RS2005",
"RS2006",
"RS2007",
"RS2007",
"RS2007",
"RS2007"
]
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.318][End]workspace/buildOnlyDiagnosticIds"
}
[Trace - 2:59:16 PM] Sending request 'textDocument/diagnostic - (1901)'.
Params: {
"identifier": "HotReloadDiagnostics",
"textDocument": {
"uri": "file:///home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs"
}
}
[Trace - 2:59:16 PM] Sending request 'textDocument/diagnostic - (1902)'.
Params: {
"identifier": "enc",
"textDocument": {
"uri": "file:///home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs"
},
"previousResultId": "PublicDocumentPullDiagnosticsHandler(category: enc):4"
}
[Trace - 2:59:16 PM] Sending request 'textDocument/diagnostic - (1903)'.
Params: {
"identifier": "syntax",
"textDocument": {
"uri": "file:///home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs"
},
"previousResultId": "PublicDocumentPullDiagnosticsHandler(category: syntax):27"
}
[Trace - 2:59:16 PM] Sending request 'textDocument/diagnostic - (1904)'.
Params: {
"identifier": "XamlDiagnostics",
"textDocument": {
"uri": "file:///home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs"
}
}
[Trace - 2:59:16 PM] Sending request 'textDocument/diagnostic - (1905)'.
Params: {
"identifier": "DocumentAnalyzerSyntax",
"textDocument": {
"uri": "file:///home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs"
},
"previousResultId": "PublicDocumentPullDiagnosticsHandler(category: DocumentAnalyzerSyntax):7"
}
[Trace - 2:59:16 PM] Sending request 'textDocument/diagnostic - (1906)'.
Params: {
"identifier": "NonLocal",
"textDocument": {
"uri": "file:///home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs"
}
}
[Trace - 2:59:16 PM] Sending request 'textDocument/diagnostic - (1907)'.
Params: {
"identifier": "DocumentAnalyzerSemantic",
"textDocument": {
"uri": "file:///home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs"
},
"previousResultId": "PublicDocumentPullDiagnosticsHandler(category: DocumentAnalyzerSemantic):20"
}
[Trace - 2:59:16 PM] Sending request 'textDocument/diagnostic - (1908)'.
Params: {
"identifier": "DocumentCompilerSemantic",
"textDocument": {
"uri": "file:///home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs"
},
"previousResultId": "PublicDocumentPullDiagnosticsHandler(category: DocumentCompilerSemantic):42"
}
[Trace - 2:59:16 PM] Sending request 'textDocument/diagnostic - (1909)'.
Params: {
"identifier": "WorkspaceDocumentsAndProject",
"textDocument": {
"uri": "file:///home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs"
}
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] /home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs found in workspace Host"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] /home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs found in workspace Host"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] /home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs found in workspace Host"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] /home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs found in workspace Host"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.518][Start]textDocument/diagnostic"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.518][Start]textDocument/diagnostic"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] /home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs found in workspace Host"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] /home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs found in workspace Host"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] PublicDocumentPullDiagnosticsHandler(category: HotReloadDiagnostics) started getting diagnostics"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] PublicDocumentPullDiagnosticsHandler(category: enc) started getting diagnostics"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] /home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs found in workspace Host"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] previousResults.Length=0"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] previousResults.Length=1"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] /home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs found in workspace Host"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] /home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs found in workspace Host"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Processing 0 documents"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Microsoft.CodeAnalysis.LanguageServer.Handler.Diagnostics.Public.PublicDocumentPullDiagnosticsHandler finished getting diagnostics"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.518][Start]textDocument/diagnostic"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] PublicDocumentPullDiagnosticsHandler(category: WorkspaceDocumentsAndProject) started getting diagnostics"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] previousResults.Length=0"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Processing 1 documents"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Processing 0 documents"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Microsoft.CodeAnalysis.LanguageServer.Handler.Diagnostics.Public.PublicDocumentPullDiagnosticsHandler finished getting diagnostics"
}
[Trace - 2:59:16 PM] Received response 'textDocument/diagnostic - (1901)' in 2ms.
No result returned.
[Trace - 2:59:16 PM] Received response 'textDocument/diagnostic - (1909)' in 2ms.
No result returned.
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.518][End]textDocument/diagnostic"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.518][End]textDocument/diagnostic"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Diagnostics were unchanged for OpenDocumentSource: /home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs in VSCodeTestExplorerBugExample"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.518][Start]textDocument/diagnostic"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Microsoft.CodeAnalysis.LanguageServer.Handler.Diagnostics.Public.PublicDocumentPullDiagnosticsHandler finished getting diagnostics"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] PublicDocumentPullDiagnosticsHandler(category: DocumentCompilerSemantic) started getting diagnostics"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] previousResults.Length=1"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Processing 1 documents"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.518][Start]textDocument/diagnostic"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] PublicDocumentPullDiagnosticsHandler(category: syntax) started getting diagnostics"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] previousResults.Length=1"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Diagnostics were unchanged for DocumentDiagnosticSource: /home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs in VSCodeTestExplorerBugExample"
}
[Trace - 2:59:16 PM] Received response 'textDocument/diagnostic - (1902)' in 2ms.
Result: {
"kind": "unchanged",
"resultId": "PublicDocumentPullDiagnosticsHandler(category: enc):4"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Microsoft.CodeAnalysis.LanguageServer.Handler.Diagnostics.Public.PublicDocumentPullDiagnosticsHandler finished getting diagnostics"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.518][End]textDocument/diagnostic"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Processing 1 documents"
}
[Trace - 2:59:16 PM] Received response 'textDocument/diagnostic - (1908)' in 2ms.
Result: {
"kind": "unchanged",
"resultId": "PublicDocumentPullDiagnosticsHandler(category: DocumentCompilerSemantic):42"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.518][End]textDocument/diagnostic"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.518][Start]textDocument/diagnostic"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] PublicDocumentPullDiagnosticsHandler(category: DocumentAnalyzerSemantic) started getting diagnostics"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] previousResults.Length=1"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.518][Start]textDocument/diagnostic"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Diagnostics were unchanged for DocumentDiagnosticSource: /home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs in VSCodeTestExplorerBugExample"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] PublicDocumentPullDiagnosticsHandler(category: XamlDiagnostics) started getting diagnostics"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Microsoft.CodeAnalysis.LanguageServer.Handler.Diagnostics.Public.PublicDocumentPullDiagnosticsHandler finished getting diagnostics"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Processing 1 documents"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] previousResults.Length=0"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Diagnostics were unchanged for DocumentDiagnosticSource: /home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs in VSCodeTestExplorerBugExample"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Microsoft.CodeAnalysis.LanguageServer.Handler.Diagnostics.Public.PublicDocumentPullDiagnosticsHandler finished getting diagnostics"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Processing 0 documents"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Microsoft.CodeAnalysis.LanguageServer.Handler.Diagnostics.Public.PublicDocumentPullDiagnosticsHandler finished getting diagnostics"
}
[Trace - 2:59:16 PM] Received response 'textDocument/diagnostic - (1907)' in 3ms.
Result: {
"kind": "unchanged",
"resultId": "PublicDocumentPullDiagnosticsHandler(category: DocumentAnalyzerSemantic):20"
}
[Trace - 2:59:16 PM] Received response 'textDocument/diagnostic - (1904)' in 3ms.
No result returned.
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.518][End]textDocument/diagnostic"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.518][Start]textDocument/diagnostic"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.518][End]textDocument/diagnostic"
}
[Trace - 2:59:16 PM] Received response 'textDocument/diagnostic - (1903)' in 3ms.
Result: {
"kind": "unchanged",
"resultId": "PublicDocumentPullDiagnosticsHandler(category: syntax):27"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] PublicDocumentPullDiagnosticsHandler(category: NonLocal) started getting diagnostics"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] previousResults.Length=0"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.518][Start]textDocument/diagnostic"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] PublicDocumentPullDiagnosticsHandler(category: DocumentAnalyzerSyntax) started getting diagnostics"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] previousResults.Length=1"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.518][End]textDocument/diagnostic"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Processing 0 documents"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Microsoft.CodeAnalysis.LanguageServer.Handler.Diagnostics.Public.PublicDocumentPullDiagnosticsHandler finished getting diagnostics"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Processing 1 documents"
}
[Trace - 2:59:16 PM] Received response 'textDocument/diagnostic - (1906)' in 3ms.
No result returned.
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.518][End]textDocument/diagnostic"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Diagnostics were unchanged for DocumentDiagnosticSource: /home/maarten/code/sandbox/VSCodeTestExplorerBugExample/VSCodeTestExplorerBugExample.cs in VSCodeTestExplorerBugExample"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] Microsoft.CodeAnalysis.LanguageServer.Handler.Diagnostics.Public.PublicDocumentPullDiagnosticsHandler finished getting diagnostics"
}
[Trace - 2:59:16 PM] Received response 'textDocument/diagnostic - (1905)' in 3ms.
Result: {
"kind": "unchanged",
"resultId": "PublicDocumentPullDiagnosticsHandler(category: DocumentAnalyzerSyntax):7"
}
[Trace - 2:59:16 PM] Received notification 'window/logMessage'.
Params: {
"type": 5,
"message": "[LanguageServerHost] [01:59:16.518][End]textDocument/diagnostic"
}
vsliv368:30146709
vspor879:30202332
vspor708:30202333
vspor363:30204092
vswsl492cf:30256860
vscod805:30301674
binariesv615:30325510
vsaa593:30376534
py29gd2263:31024239
c4g48928:30535728
azure-dev_surveyone:30548225
a9j8j154:30646983
962ge761:30959799
pythonnoceb:30805159
asynctok:30898717
pythonmypyd1:30879173
h48ei257:31000450
pythontbext0:30879054
cppperfnew:31000557
dsvsc020:30976470
pythonait:31006305
dsvsc021:30996838
0ee40948:31013168
dvdeprecation:31068756
dwnewjupyter:31046869
2f103344:31071589
nativerepl1:31139838
pythonrstrctxt:31112756
cf971741:31144450
iacca1:31171482
notype1:31157159
5fd0e150:31155592
dwcopilot:31170013
stablechunks:31184530
The text was updated successfully, but these errors were encountered: