-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add empty, disabled tests for go-to-def on C# symbol scenario
- Loading branch information
1 parent
9c91c2c
commit bc827fb
Showing
7 changed files
with
88 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace GoToCSharp { | ||
|
||
public class Class1 | ||
{ | ||
|
||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
test/FsAutoComplete.Tests.Lsp/TestCases/GoToCSharp/GoToCSharp.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
</PropertyGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
test/FsAutoComplete.Tests.Lsp/TestCases/GoToTests/GoToTests.sln
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.0.31903.59 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "GoToTests", "GoToTests.fsproj", "{6800DC59-9582-42D8-AFCC-CF37FBAB0B47}" | ||
EndProject | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GoToCSharp", "..\GoToCSharp\GoToCSharp.csproj", "{9983CEFF-1E39-4DCD-BCF3-025919E52871}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{6800DC59-9582-42D8-AFCC-CF37FBAB0B47}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{6800DC59-9582-42D8-AFCC-CF37FBAB0B47}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{6800DC59-9582-42D8-AFCC-CF37FBAB0B47}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{6800DC59-9582-42D8-AFCC-CF37FBAB0B47}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{9983CEFF-1E39-4DCD-BCF3-025919E52871}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{9983CEFF-1E39-4DCD-BCF3-025919E52871}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{9983CEFF-1E39-4DCD-BCF3-025919E52871}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{9983CEFF-1E39-4DCD-BCF3-025919E52871}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
EndGlobal |