Skip to content

Commit 2f0f30c

Browse files
committed
Update test files.
1 parent adecc87 commit 2f0f30c

File tree

6 files changed

+45
-3
lines changed

6 files changed

+45
-3
lines changed

test/integrationTests/testAssets/singleCsproj/completion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace singleCsproj
44
{
5-
class Completion
5+
class Completion : CompletionBase
66
{
77
static void shouldHaveCompletions(string[] args)
88
{
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using singleCsproj2;
2+
3+
namespace singleCsproj
4+
{
5+
class CompletionBase
6+
{
7+
public virtual void Method(NeedsImport n) {}
8+
}
9+
}
10+
11+
namespace singleCsproj2
12+
{
13+
class NeedsImport {}
14+
}

test/integrationTests/testAssets/slnFilterWithCsproj/src/app/completion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace singleCsproj
44
{
5-
class Completion
5+
class Completion : CompletionBase
66
{
77
static void shouldHaveCompletions(string[] args)
88
{
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using singleCsproj2;
2+
3+
namespace singleCsproj
4+
{
5+
class CompletionBase
6+
{
7+
public virtual void Method(NeedsImport n) {}
8+
}
9+
}
10+
11+
namespace singleCsproj2
12+
{
13+
class NeedsImport {}
14+
}

test/integrationTests/testAssets/slnWithCsproj/src/app/completion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace singleCsproj
44
{
5-
class Completion
5+
class Completion : CompletionBase
66
{
77
static void shouldHaveCompletions(string[] args)
88
{
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using singleCsproj2;
2+
3+
namespace singleCsproj
4+
{
5+
class CompletionBase
6+
{
7+
public virtual void Method(NeedsImport n) {}
8+
}
9+
}
10+
11+
namespace singleCsproj2
12+
{
13+
class NeedsImport {}
14+
}

0 commit comments

Comments
 (0)