-
Notifications
You must be signed in to change notification settings - Fork 512
Added a new test project for c# 11 #3491
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
Merged
sharwell
merged 5 commits into
DotNetAnalyzers:master
from
bjornhellander:feature/test11
May 2, 2022
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
89b1487
Added a new test project for c# 11
bjornhellander 0912548
Removed redundant code
bjornhellander d09a2e2
Updated Microsoft.CodeAnalysis.Analyzers to version 3.3.3
bjornhellander c933da1
Upgraded the new test project to Microsoft.CodeAnalysis.CSharp.Worksp…
bjornhellander 6dc6195
Added temporary hack to set language version "preview" when running i…
bjornhellander File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
13 changes: 13 additions & 0 deletions
13
StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp11/AnalyzerConfigurationTestsCSharp11.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11 | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10; | ||
|
||
public class AnalyzerConfigurationTestsCSharp11 : AnalyzerConfigurationTestsCSharp10 | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers.Test.CSharp11/DocumentationRules/CSharp11InheritdocCodeFixProviderUnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class CSharp11InheritdocCodeFixProviderUnitTests : CSharp10InheritdocCodeFixProviderUnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...s/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/CSharp11NoXmlFileHeaderUnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class CSharp11NoXmlFileHeaderUnitTests : CSharp10NoXmlFileHeaderUnitTests | ||
{ | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1600CSharp11UnitTests.cs
This file contains hidden or 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,40 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using Microsoft.CodeAnalysis.Testing; | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
using static StyleCop.Analyzers.Test.Verifiers.StyleCopCodeFixVerifier< | ||
StyleCop.Analyzers.DocumentationRules.SA1600ElementsMustBeDocumented, | ||
StyleCop.Analyzers.DocumentationRules.SA1600CodeFixProvider>; | ||
|
||
public class SA1600CSharp11UnitTests : SA1600CSharp10UnitTests | ||
{ | ||
protected override DiagnosticResult[] GetExpectedResultTestRegressionMethodGlobalNamespace(string code) | ||
{ | ||
if (code == "public void {|#0:TestMember|}() { }") | ||
{ | ||
return new[] | ||
{ | ||
// /0/Test0.cs(4,1): error CS0106: The modifier 'public' is not valid for this item | ||
DiagnosticResult.CompilerError("CS0106").WithSpan(4, 1, 4, 7).WithArguments("public"), | ||
|
||
// /0/Test0.cs(4,1): error CS8320: Feature 'top-level statements' is not available in C# 7.2. Please use language version 9.0 or greater. | ||
DiagnosticResult.CompilerError("CS8320").WithSpan(4, 1, 4, 29).WithArguments("top-level statements", "9.0"), | ||
|
||
// /0/Test0.cs(4,1): error CS8805: Program using top-level statements must be an executable. | ||
DiagnosticResult.CompilerError("CS8805").WithSpan(4, 1, 4, 29), | ||
}; | ||
} | ||
|
||
return new[] | ||
{ | ||
DiagnosticResult.CompilerError("CS0116").WithMessage("A namespace cannot directly contain members such as fields, methods or statements").WithLocation(0), | ||
Diagnostic().WithLocation(0), | ||
}; | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1601CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1601CSharp11UnitTests : SA1601CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1602CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1602CSharp11UnitTests : SA1602CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1603CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1603CSharp11UnitTests : SA1603CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1604CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1604CSharp11UnitTests : SA1604CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1605CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1605CSharp11UnitTests : SA1605CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1606CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1606CSharp11UnitTests : SA1606CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1607CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1607CSharp11UnitTests : SA1607CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1608CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1608CSharp11UnitTests : SA1608CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1609CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1609CSharp11UnitTests : SA1609CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1610CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1610CSharp11UnitTests : SA1610CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1611CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1611CSharp11UnitTests : SA1611CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1612CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1612CSharp11UnitTests : SA1612CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1613CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1613CSharp11UnitTests : SA1613CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1614CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1614CSharp11UnitTests : SA1614CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1615CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1615CSharp11UnitTests : SA1615CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1616CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1616CSharp11UnitTests : SA1616CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1617CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1617CSharp11UnitTests : SA1617CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1618CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1618CSharp11UnitTests : SA1618CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1619CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1619CSharp11UnitTests : SA1619CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1620CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1620CSharp11UnitTests : SA1620CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1621CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1621CSharp11UnitTests : SA1621CSharp10UnitTests | ||
{ | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
....Analyzers/StyleCop.Analyzers.Test.CSharp11/DocumentationRules/SA1622CSharp11UnitTests.cs
This file contains hidden or 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,13 @@ | ||
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. | ||
// Licensed under the MIT License. See LICENSE in the project root for license information. | ||
|
||
#nullable disable | ||
|
||
namespace StyleCop.Analyzers.Test.CSharp11.DocumentationRules | ||
{ | ||
using StyleCop.Analyzers.Test.CSharp10.DocumentationRules; | ||
|
||
public class SA1622CSharp11UnitTests : SA1622CSharp10UnitTests | ||
{ | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
❔ Is this different from the base 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.
I believe this override can be removed and the C# 11 test just use the one from C# 10
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.
👍