diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/Properties/AssemblyInfo.cs b/StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/Properties/AssemblyInfo.cs index 05d80f9a6..ac6048178 100644 --- a/StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/Properties/AssemblyInfo.cs +++ b/StyleCop.Analyzers/StyleCop.Analyzers.CodeFixes/Properties/AssemblyInfo.cs @@ -1,8 +1,6 @@ // 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 - using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; @@ -21,4 +19,5 @@ [assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp10, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c36d40d996fcc95fb6a89754728616758f459026e31478ce93633b3e27a4af416f103aa3d7a9e7998f829f8715cc1240d30724fd662042550fa71357b19562622424267e9e4640c403edbe64709a9ca5918128a9b9020b0db6e770d0dd1eac888869c23a835b74bde00e171984b1d1c24636cf030f0b23106e73035a2be145a6")] [assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp11, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c36d40d996fcc95fb6a89754728616758f459026e31478ce93633b3e27a4af416f103aa3d7a9e7998f829f8715cc1240d30724fd662042550fa71357b19562622424267e9e4640c403edbe64709a9ca5918128a9b9020b0db6e770d0dd1eac888869c23a835b74bde00e171984b1d1c24636cf030f0b23106e73035a2be145a6")] [assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp12, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c36d40d996fcc95fb6a89754728616758f459026e31478ce93633b3e27a4af416f103aa3d7a9e7998f829f8715cc1240d30724fd662042550fa71357b19562622424267e9e4640c403edbe64709a9ca5918128a9b9020b0db6e770d0dd1eac888869c23a835b74bde00e171984b1d1c24636cf030f0b23106e73035a2be145a6")] +[assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp13, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c36d40d996fcc95fb6a89754728616758f459026e31478ce93633b3e27a4af416f103aa3d7a9e7998f829f8715cc1240d30724fd662042550fa71357b19562622424267e9e4640c403edbe64709a9ca5918128a9b9020b0db6e770d0dd1eac888869c23a835b74bde00e171984b1d1c24636cf030f0b23106e73035a2be145a6")] [assembly: InternalsVisibleTo("StyleCopTester, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c36d40d996fcc95fb6a89754728616758f459026e31478ce93633b3e27a4af416f103aa3d7a9e7998f829f8715cc1240d30724fd662042550fa71357b19562622424267e9e4640c403edbe64709a9ca5918128a9b9020b0db6e770d0dd1eac888869c23a835b74bde00e171984b1d1c24636cf030f0b23106e73035a2be145a6")] diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/AnalyzerConfigurationCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/AnalyzerConfigurationCSharp13UnitTests.cs new file mode 100644 index 000000000..eaa5a3fbc --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/AnalyzerConfigurationCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13 +{ + using StyleCop.Analyzers.Test.CSharp12; + + public partial class AnalyzerConfigurationCSharp13UnitTests : AnalyzerConfigurationCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/InheritdocCodeFixProviderCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/InheritdocCodeFixProviderCSharp13UnitTests.cs new file mode 100644 index 000000000..e3748ec50 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/InheritdocCodeFixProviderCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class InheritdocCodeFixProviderCSharp13UnitTests : InheritdocCodeFixProviderCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/NoXmlFileHeaderCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/NoXmlFileHeaderCSharp13UnitTests.cs new file mode 100644 index 000000000..b739e5162 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/NoXmlFileHeaderCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class NoXmlFileHeaderCSharp13UnitTests : NoXmlFileHeaderCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1600CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1600CSharp13UnitTests.cs new file mode 100644 index 000000000..8988f071a --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1600CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1600CSharp13UnitTests : SA1600CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1601CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1601CSharp13UnitTests.cs new file mode 100644 index 000000000..cc3873c71 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1601CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1601CSharp13UnitTests : SA1601CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1602CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1602CSharp13UnitTests.cs new file mode 100644 index 000000000..c2d0465d6 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1602CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1602CSharp13UnitTests : SA1602CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1603CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1603CSharp13UnitTests.cs new file mode 100644 index 000000000..fb418da63 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1603CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1603CSharp13UnitTests : SA1603CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1604CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1604CSharp13UnitTests.cs new file mode 100644 index 000000000..0c116c2d7 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1604CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1604CSharp13UnitTests : SA1604CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1605CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1605CSharp13UnitTests.cs new file mode 100644 index 000000000..83d787b07 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1605CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1605CSharp13UnitTests : SA1605CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1606CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1606CSharp13UnitTests.cs new file mode 100644 index 000000000..2d790bdfa --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1606CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1606CSharp13UnitTests : SA1606CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1607CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1607CSharp13UnitTests.cs new file mode 100644 index 000000000..576c17c20 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1607CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1607CSharp13UnitTests : SA1607CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1608CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1608CSharp13UnitTests.cs new file mode 100644 index 000000000..98710a912 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1608CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1608CSharp13UnitTests : SA1608CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1609CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1609CSharp13UnitTests.cs new file mode 100644 index 000000000..803b116a8 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1609CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1609CSharp13UnitTests : SA1609CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1610CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1610CSharp13UnitTests.cs new file mode 100644 index 000000000..6ad56f028 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1610CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1610CSharp13UnitTests : SA1610CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1611CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1611CSharp13UnitTests.cs new file mode 100644 index 000000000..8029f43a8 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1611CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1611CSharp13UnitTests : SA1611CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1612CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1612CSharp13UnitTests.cs new file mode 100644 index 000000000..3b49964e8 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1612CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1612CSharp13UnitTests : SA1612CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1613CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1613CSharp13UnitTests.cs new file mode 100644 index 000000000..97f221640 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1613CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1613CSharp13UnitTests : SA1613CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1614CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1614CSharp13UnitTests.cs new file mode 100644 index 000000000..918f7d4be --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1614CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1614CSharp13UnitTests : SA1614CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1615CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1615CSharp13UnitTests.cs new file mode 100644 index 000000000..1705a7680 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1615CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1615CSharp13UnitTests : SA1615CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1616CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1616CSharp13UnitTests.cs new file mode 100644 index 000000000..480ddb49e --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1616CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1616CSharp13UnitTests : SA1616CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1617CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1617CSharp13UnitTests.cs new file mode 100644 index 000000000..423b950f6 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1617CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1617CSharp13UnitTests : SA1617CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1618CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1618CSharp13UnitTests.cs new file mode 100644 index 000000000..524422cb0 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1618CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1618CSharp13UnitTests : SA1618CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1619CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1619CSharp13UnitTests.cs new file mode 100644 index 000000000..616e9c8bd --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1619CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1619CSharp13UnitTests : SA1619CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1620CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1620CSharp13UnitTests.cs new file mode 100644 index 000000000..f7a34dce3 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1620CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1620CSharp13UnitTests : SA1620CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1621CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1621CSharp13UnitTests.cs new file mode 100644 index 000000000..f1c147e27 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1621CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1621CSharp13UnitTests : SA1621CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1622CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1622CSharp13UnitTests.cs new file mode 100644 index 000000000..3aec885d3 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1622CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1622CSharp13UnitTests : SA1622CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1623CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1623CSharp13UnitTests.cs new file mode 100644 index 000000000..97330e5b1 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1623CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1623CSharp13UnitTests : SA1623CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1624CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1624CSharp13UnitTests.cs new file mode 100644 index 000000000..3d86b17b5 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1624CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1624CSharp13UnitTests : SA1624CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1625CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1625CSharp13UnitTests.cs new file mode 100644 index 000000000..f5711fd87 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1625CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1625CSharp13UnitTests : SA1625CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1626CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1626CSharp13UnitTests.cs new file mode 100644 index 000000000..4cf095cc5 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1626CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1626CSharp13UnitTests : SA1626CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1627CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1627CSharp13UnitTests.cs new file mode 100644 index 000000000..805614617 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1627CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1627CSharp13UnitTests : SA1627CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1628CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1628CSharp13UnitTests.cs new file mode 100644 index 000000000..7d41d063c --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1628CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1628CSharp13UnitTests : SA1628CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1629CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1629CSharp13UnitTests.cs new file mode 100644 index 000000000..73783f436 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1629CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1629CSharp13UnitTests : SA1629CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1630CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1630CSharp13UnitTests.cs new file mode 100644 index 000000000..9923bd314 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1630CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1630CSharp13UnitTests : SA1630CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1631CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1631CSharp13UnitTests.cs new file mode 100644 index 000000000..0429be3f0 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1631CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1631CSharp13UnitTests : SA1631CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1632CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1632CSharp13UnitTests.cs new file mode 100644 index 000000000..bbe7faa07 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1632CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1632CSharp13UnitTests : SA1632CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1633CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1633CSharp13UnitTests.cs new file mode 100644 index 000000000..58e66cce7 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1633CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1633CSharp13UnitTests : SA1633CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1634CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1634CSharp13UnitTests.cs new file mode 100644 index 000000000..dac4f3893 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1634CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1634CSharp13UnitTests : SA1634CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1635CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1635CSharp13UnitTests.cs new file mode 100644 index 000000000..e16366e1d --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1635CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1635CSharp13UnitTests : SA1635CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1636CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1636CSharp13UnitTests.cs new file mode 100644 index 000000000..540d3e389 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1636CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1636CSharp13UnitTests : SA1636CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1637CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1637CSharp13UnitTests.cs new file mode 100644 index 000000000..32d759510 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1637CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1637CSharp13UnitTests : SA1637CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1638CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1638CSharp13UnitTests.cs new file mode 100644 index 000000000..b60077557 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1638CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1638CSharp13UnitTests : SA1638CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1639CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1639CSharp13UnitTests.cs new file mode 100644 index 000000000..121dc4217 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1639CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1639CSharp13UnitTests : SA1639CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1640CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1640CSharp13UnitTests.cs new file mode 100644 index 000000000..2d05a2326 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1640CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1640CSharp13UnitTests : SA1640CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1641CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1641CSharp13UnitTests.cs new file mode 100644 index 000000000..d396160a8 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1641CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1641CSharp13UnitTests : SA1641CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1642CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1642CSharp13UnitTests.cs new file mode 100644 index 000000000..f3e731d9d --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1642CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1642CSharp13UnitTests : SA1642CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1643CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1643CSharp13UnitTests.cs new file mode 100644 index 000000000..98f9c174c --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1643CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1643CSharp13UnitTests : SA1643CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1644CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1644CSharp13UnitTests.cs new file mode 100644 index 000000000..9496d5e39 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1644CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1644CSharp13UnitTests : SA1644CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1645CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1645CSharp13UnitTests.cs new file mode 100644 index 000000000..75dba52b2 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1645CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1645CSharp13UnitTests : SA1645CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1646CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1646CSharp13UnitTests.cs new file mode 100644 index 000000000..7e4e4290c --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1646CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1646CSharp13UnitTests : SA1646CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1647CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1647CSharp13UnitTests.cs new file mode 100644 index 000000000..57e955823 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1647CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1647CSharp13UnitTests : SA1647CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1648CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1648CSharp13UnitTests.cs new file mode 100644 index 000000000..47d7eacf8 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1648CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1648CSharp13UnitTests : SA1648CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1649CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1649CSharp13UnitTests.cs new file mode 100644 index 000000000..a6c11b748 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1649CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1649CSharp13UnitTests : SA1649CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1650CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1650CSharp13UnitTests.cs new file mode 100644 index 000000000..95c3b54f2 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1650CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1650CSharp13UnitTests : SA1650CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1651CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1651CSharp13UnitTests.cs new file mode 100644 index 000000000..f848fded3 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/DocumentationRules/SA1651CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.DocumentationRules +{ + using StyleCop.Analyzers.Test.CSharp12.DocumentationRules; + + public partial class SA1651CSharp13UnitTests : SA1651CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/HelperTests/SymbolNameHelpersCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/HelperTests/SymbolNameHelpersCSharp13UnitTests.cs new file mode 100644 index 000000000..9d88a3e78 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/HelperTests/SymbolNameHelpersCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.HelperTests +{ + using StyleCop.Analyzers.Test.CSharp12.HelperTests; + + public partial class SymbolNameHelpersCSharp13UnitTests : SymbolNameHelpersCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1500CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1500CSharp13UnitTests.cs new file mode 100644 index 000000000..4471227f0 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1500CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1500CSharp13UnitTests : SA1500CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1501CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1501CSharp13UnitTests.cs new file mode 100644 index 000000000..ea180545a --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1501CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1501CSharp13UnitTests : SA1501CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1502CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1502CSharp13UnitTests.cs new file mode 100644 index 000000000..07b8b5a35 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1502CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1502CSharp13UnitTests : SA1502CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1503CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1503CSharp13UnitTests.cs new file mode 100644 index 000000000..46ddcd289 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1503CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1503CSharp13UnitTests : SA1503CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1504CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1504CSharp13UnitTests.cs new file mode 100644 index 000000000..1bc9d9d86 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1504CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1504CSharp13UnitTests : SA1504CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1505CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1505CSharp13UnitTests.cs new file mode 100644 index 000000000..b3ecc907f --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1505CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1505CSharp13UnitTests : SA1505CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1506CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1506CSharp13UnitTests.cs new file mode 100644 index 000000000..1b06da0b1 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1506CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1506CSharp13UnitTests : SA1506CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1507CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1507CSharp13UnitTests.cs new file mode 100644 index 000000000..dc0c9f549 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1507CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1507CSharp13UnitTests : SA1507CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1508CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1508CSharp13UnitTests.cs new file mode 100644 index 000000000..f417f4341 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1508CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1508CSharp13UnitTests : SA1508CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1509CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1509CSharp13UnitTests.cs new file mode 100644 index 000000000..814c705a9 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1509CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1509CSharp13UnitTests : SA1509CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1510CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1510CSharp13UnitTests.cs new file mode 100644 index 000000000..f2b931ca9 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1510CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1510CSharp13UnitTests : SA1510CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1511CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1511CSharp13UnitTests.cs new file mode 100644 index 000000000..18b8a2313 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1511CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1511CSharp13UnitTests : SA1511CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1512CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1512CSharp13UnitTests.cs new file mode 100644 index 000000000..179c73a4e --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1512CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1512CSharp13UnitTests : SA1512CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1513CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1513CSharp13UnitTests.cs new file mode 100644 index 000000000..8236909e3 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1513CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1513CSharp13UnitTests : SA1513CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1514CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1514CSharp13UnitTests.cs new file mode 100644 index 000000000..cc3f5e0ac --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1514CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1514CSharp13UnitTests : SA1514CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1515CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1515CSharp13UnitTests.cs new file mode 100644 index 000000000..44e6d1ac6 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1515CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1515CSharp13UnitTests : SA1515CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1516CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1516CSharp13UnitTests.cs new file mode 100644 index 000000000..866c5f31c --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1516CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1516CSharp13UnitTests : SA1516CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1516UsingGroupsCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1516UsingGroupsCSharp13UnitTests.cs new file mode 100644 index 000000000..116d68bef --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1516UsingGroupsCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1516UsingGroupsCSharp13UnitTests : SA1516UsingGroupsCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1517CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1517CSharp13UnitTests.cs new file mode 100644 index 000000000..6ca7ac066 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1517CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1517CSharp13UnitTests : SA1517CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1518CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1518CSharp13UnitTests.cs new file mode 100644 index 000000000..aaa62673b --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1518CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1518CSharp13UnitTests : SA1518CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1519CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1519CSharp13UnitTests.cs new file mode 100644 index 000000000..96322216b --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1519CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1519CSharp13UnitTests : SA1519CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1520CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1520CSharp13UnitTests.cs new file mode 100644 index 000000000..3c0ddc9c6 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/LayoutRules/SA1520CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.LayoutRules +{ + using StyleCop.Analyzers.Test.CSharp12.LayoutRules; + + public partial class SA1520CSharp13UnitTests : SA1520CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/AccessorDeclarationSyntaxExtensionsCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/AccessorDeclarationSyntaxExtensionsCSharp13UnitTests.cs new file mode 100644 index 000000000..5c48589fc --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/AccessorDeclarationSyntaxExtensionsCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class AccessorDeclarationSyntaxExtensionsCSharp13UnitTests : AccessorDeclarationSyntaxExtensionsCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/ArgumentSyntaxExtensionsCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/ArgumentSyntaxExtensionsCSharp13UnitTests.cs new file mode 100644 index 000000000..e17222f4c --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/ArgumentSyntaxExtensionsCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class ArgumentSyntaxExtensionsCSharp13UnitTests : ArgumentSyntaxExtensionsCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/BaseMethodDeclarationSyntaxExtensionsCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/BaseMethodDeclarationSyntaxExtensionsCSharp13UnitTests.cs new file mode 100644 index 000000000..8faf899e3 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/BaseMethodDeclarationSyntaxExtensionsCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class BaseMethodDeclarationSyntaxExtensionsCSharp13UnitTests : BaseMethodDeclarationSyntaxExtensionsCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/CasePatternSwitchLabelSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/CasePatternSwitchLabelSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..675e2b827 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/CasePatternSwitchLabelSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class CasePatternSwitchLabelSyntaxWrapperCSharp13UnitTests : CasePatternSwitchLabelSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/CommonForEachStatementSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/CommonForEachStatementSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..95684b580 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/CommonForEachStatementSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class CommonForEachStatementSyntaxWrapperCSharp13UnitTests : CommonForEachStatementSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/ConstantPatternSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/ConstantPatternSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..f1eb005e5 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/ConstantPatternSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class ConstantPatternSyntaxWrapperCSharp13UnitTests : ConstantPatternSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/ConstructorDeclarationSyntaxExtensionsCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/ConstructorDeclarationSyntaxExtensionsCSharp13UnitTests.cs new file mode 100644 index 000000000..f2e10ad20 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/ConstructorDeclarationSyntaxExtensionsCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class ConstructorDeclarationSyntaxExtensionsCSharp13UnitTests : ConstructorDeclarationSyntaxExtensionsCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/CrefParameterSyntaxExtensionsCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/CrefParameterSyntaxExtensionsCSharp13UnitTests.cs new file mode 100644 index 000000000..5c041d3cd --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/CrefParameterSyntaxExtensionsCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class CrefParameterSyntaxExtensionsCSharp13UnitTests : CrefParameterSyntaxExtensionsCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/DeclarationExpressionSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/DeclarationExpressionSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..65b293b3f --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/DeclarationExpressionSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class DeclarationExpressionSyntaxWrapperCSharp13UnitTests : DeclarationExpressionSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/DeclarationPatternSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/DeclarationPatternSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..13aadf7ec --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/DeclarationPatternSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class DeclarationPatternSyntaxWrapperCSharp13UnitTests : DeclarationPatternSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/DestructorDeclarationSyntaxExtensionsCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/DestructorDeclarationSyntaxExtensionsCSharp13UnitTests.cs new file mode 100644 index 000000000..e41cb3f6f --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/DestructorDeclarationSyntaxExtensionsCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class DestructorDeclarationSyntaxExtensionsCSharp13UnitTests : DestructorDeclarationSyntaxExtensionsCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/DiscardDesignationSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/DiscardDesignationSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..ca0496278 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/DiscardDesignationSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class DiscardDesignationSyntaxWrapperCSharp13UnitTests : DiscardDesignationSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/ImplicitStackAllocArrayCreationExpressionSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/ImplicitStackAllocArrayCreationExpressionSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..88acd926c --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/ImplicitStackAllocArrayCreationExpressionSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class ImplicitStackAllocArrayCreationExpressionSyntaxWrapperCSharp13UnitTests : ImplicitStackAllocArrayCreationExpressionSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/IsPatternExpressionSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/IsPatternExpressionSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..f6576a807 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/IsPatternExpressionSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class IsPatternExpressionSyntaxWrapperCSharp13UnitTests : IsPatternExpressionSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/LanguageVersionExCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/LanguageVersionExCSharp13UnitTests.cs new file mode 100644 index 000000000..327094f25 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/LanguageVersionExCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class LanguageVersionExCSharp13UnitTests : LanguageVersionExCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/LightupHelpersCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/LightupHelpersCSharp13UnitTests.cs new file mode 100644 index 000000000..786214221 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/LightupHelpersCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class LightupHelpersCSharp13UnitTests : LightupHelpersCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/LocalFunctionStatementSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/LocalFunctionStatementSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..e80adae7c --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/LocalFunctionStatementSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class LocalFunctionStatementSyntaxWrapperCSharp13UnitTests : LocalFunctionStatementSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/MethodKindExCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/MethodKindExCSharp13UnitTests.cs new file mode 100644 index 000000000..41e013bd0 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/MethodKindExCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class MethodKindExCSharp13UnitTests : MethodKindExCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/OperationKindExCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/OperationKindExCSharp13UnitTests.cs new file mode 100644 index 000000000..79755ed74 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/OperationKindExCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class OperationKindExCSharp13UnitTests : OperationKindExCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/ParenthesizedVariableDesignationSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/ParenthesizedVariableDesignationSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..b3da32cf6 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/ParenthesizedVariableDesignationSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class ParenthesizedVariableDesignationSyntaxWrapperCSharp13UnitTests : ParenthesizedVariableDesignationSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/PatternSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/PatternSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..684e3b58c --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/PatternSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class PatternSyntaxWrapperCSharp13UnitTests : PatternSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/RefExpressionSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/RefExpressionSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..38cc3db79 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/RefExpressionSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class RefExpressionSyntaxWrapperCSharp13UnitTests : RefExpressionSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/RefTypeSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/RefTypeSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..0eea84093 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/RefTypeSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class RefTypeSyntaxWrapperCSharp13UnitTests : RefTypeSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/SingleVariableDesignationSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/SingleVariableDesignationSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..427c0549f --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/SingleVariableDesignationSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class SingleVariableDesignationSyntaxWrapperCSharp13UnitTests : SingleVariableDesignationSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/StackAllocArrayCreationExpressionSyntaxExtensionsCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/StackAllocArrayCreationExpressionSyntaxExtensionsCSharp13UnitTests.cs new file mode 100644 index 000000000..302ea7628 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/StackAllocArrayCreationExpressionSyntaxExtensionsCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class StackAllocArrayCreationExpressionSyntaxExtensionsCSharp13UnitTests : StackAllocArrayCreationExpressionSyntaxExtensionsCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/SwitchExpressionArmSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/SwitchExpressionArmSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..191e40702 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/SwitchExpressionArmSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class SwitchExpressionArmSyntaxWrapperCSharp13UnitTests : SwitchExpressionArmSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/SwitchExpressionSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/SwitchExpressionSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..bba3f057c --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/SwitchExpressionSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class SwitchExpressionSyntaxWrapperCSharp13UnitTests : SwitchExpressionSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/SyntaxKindExCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/SyntaxKindExCSharp13UnitTests.cs new file mode 100644 index 000000000..6f7eae295 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/SyntaxKindExCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class SyntaxKindExCSharp13UnitTests : SyntaxKindExCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/SyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/SyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..f3b8369df --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/SyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class SyntaxWrapperCSharp13UnitTests : SyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/SyntaxWrapperHelperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/SyntaxWrapperHelperCSharp13UnitTests.cs new file mode 100644 index 000000000..5b8ea6b80 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/SyntaxWrapperHelperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class SyntaxWrapperHelperCSharp13UnitTests : SyntaxWrapperHelperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/ThrowExpressionSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/ThrowExpressionSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..1c0479178 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/ThrowExpressionSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class ThrowExpressionSyntaxWrapperCSharp13UnitTests : ThrowExpressionSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/TupleElementSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/TupleElementSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..7a5a49227 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/TupleElementSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class TupleElementSyntaxWrapperCSharp13UnitTests : TupleElementSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/TupleExpressionSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/TupleExpressionSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..1f2ea798a --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/TupleExpressionSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class TupleExpressionSyntaxWrapperCSharp13UnitTests : TupleExpressionSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/TupleTypeSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/TupleTypeSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..97daf8495 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/TupleTypeSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class TupleTypeSyntaxWrapperCSharp13UnitTests : TupleTypeSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/VariableDesignationSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/VariableDesignationSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..d07274759 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/VariableDesignationSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class VariableDesignationSyntaxWrapperCSharp13UnitTests : VariableDesignationSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/WhenClauseSyntaxWrapperCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/WhenClauseSyntaxWrapperCSharp13UnitTests.cs new file mode 100644 index 000000000..c29bdd16c --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Lightup/WhenClauseSyntaxWrapperCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Lightup +{ + using StyleCop.Analyzers.Test.CSharp12.Lightup; + + public partial class WhenClauseSyntaxWrapperCSharp13UnitTests : WhenClauseSyntaxWrapperCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1119CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1119CSharp13UnitTests.cs new file mode 100644 index 000000000..4aa6d6fe6 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1119CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1119CSharp13UnitTests : SA1119CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1400CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1400CSharp13UnitTests.cs new file mode 100644 index 000000000..c633117b9 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1400CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1400CSharp13UnitTests : SA1400CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1401CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1401CSharp13UnitTests.cs new file mode 100644 index 000000000..13f46c209 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1401CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1401CSharp13UnitTests : SA1401CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForClassCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForClassCSharp13UnitTests.cs new file mode 100644 index 000000000..86dd59374 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForClassCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1402ForClassCSharp13UnitTests : SA1402ForClassCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForDelegateCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForDelegateCSharp13UnitTests.cs new file mode 100644 index 000000000..7b52234f7 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForDelegateCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1402ForDelegateCSharp13UnitTests : SA1402ForDelegateCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForEnumCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForEnumCSharp13UnitTests.cs new file mode 100644 index 000000000..2652fc5f4 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForEnumCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1402ForEnumCSharp13UnitTests : SA1402ForEnumCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForInterfaceCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForInterfaceCSharp13UnitTests.cs new file mode 100644 index 000000000..68a77e3dd --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForInterfaceCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1402ForInterfaceCSharp13UnitTests : SA1402ForInterfaceCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForRecordCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForRecordCSharp13UnitTests.cs new file mode 100644 index 000000000..f62db8e00 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForRecordCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1402ForRecordCSharp13UnitTests : SA1402ForRecordCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForRecordClassCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForRecordClassCSharp13UnitTests.cs new file mode 100644 index 000000000..4d39dc3d5 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForRecordClassCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1402ForRecordClassCSharp13UnitTests : SA1402ForRecordClassCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForRecordStructCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForRecordStructCSharp13UnitTests.cs new file mode 100644 index 000000000..d6e839a90 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForRecordStructCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1402ForRecordStructCSharp13UnitTests : SA1402ForRecordStructCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForStructCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForStructCSharp13UnitTests.cs new file mode 100644 index 000000000..f361f1375 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1402ForStructCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1402ForStructCSharp13UnitTests : SA1402ForStructCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1403CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1403CSharp13UnitTests.cs new file mode 100644 index 000000000..1fdaadbc0 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1403CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1403CSharp13UnitTests : SA1403CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1404CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1404CSharp13UnitTests.cs new file mode 100644 index 000000000..b602baa81 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1404CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1404CSharp13UnitTests : SA1404CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1405CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1405CSharp13UnitTests.cs new file mode 100644 index 000000000..42ea7d07b --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1405CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1405CSharp13UnitTests : SA1405CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1406CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1406CSharp13UnitTests.cs new file mode 100644 index 000000000..ddda59316 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1406CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1406CSharp13UnitTests : SA1406CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1407CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1407CSharp13UnitTests.cs new file mode 100644 index 000000000..62ef9061a --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1407CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1407CSharp13UnitTests : SA1407CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1408CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1408CSharp13UnitTests.cs new file mode 100644 index 000000000..baabac8d8 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1408CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1408CSharp13UnitTests : SA1408CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1409CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1409CSharp13UnitTests.cs new file mode 100644 index 000000000..1e5e06992 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1409CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1409CSharp13UnitTests : SA1409CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1410CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1410CSharp13UnitTests.cs new file mode 100644 index 000000000..07e2b7374 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1410CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1410CSharp13UnitTests : SA1410CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1411CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1411CSharp13UnitTests.cs new file mode 100644 index 000000000..33cafea38 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1411CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1411CSharp13UnitTests : SA1411CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1412CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1412CSharp13UnitTests.cs new file mode 100644 index 000000000..d2b396fe1 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1412CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1412CSharp13UnitTests : SA1412CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1413CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1413CSharp13UnitTests.cs new file mode 100644 index 000000000..9678da8c3 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1413CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1413CSharp13UnitTests : SA1413CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1414CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1414CSharp13UnitTests.cs new file mode 100644 index 000000000..23ba14706 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/MaintainabilityRules/SA1414CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.MaintainabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.MaintainabilityRules; + + public partial class SA1414CSharp13UnitTests : SA1414CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1300CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1300CSharp13UnitTests.cs new file mode 100644 index 000000000..b63ce05cc --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1300CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.NamingRules +{ + using StyleCop.Analyzers.Test.CSharp12.NamingRules; + + public partial class SA1300CSharp13UnitTests : SA1300CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1301CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1301CSharp13UnitTests.cs new file mode 100644 index 000000000..5539188d9 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1301CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.NamingRules +{ + using StyleCop.Analyzers.Test.CSharp12.NamingRules; + + public partial class SA1301CSharp13UnitTests : SA1301CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1302CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1302CSharp13UnitTests.cs new file mode 100644 index 000000000..cadbdd791 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1302CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.NamingRules +{ + using StyleCop.Analyzers.Test.CSharp12.NamingRules; + + public partial class SA1302CSharp13UnitTests : SA1302CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1303CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1303CSharp13UnitTests.cs new file mode 100644 index 000000000..fcd028cd4 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1303CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.NamingRules +{ + using StyleCop.Analyzers.Test.CSharp12.NamingRules; + + public partial class SA1303CSharp13UnitTests : SA1303CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1304CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1304CSharp13UnitTests.cs new file mode 100644 index 000000000..0e9b25624 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1304CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.NamingRules +{ + using StyleCop.Analyzers.Test.CSharp12.NamingRules; + + public partial class SA1304CSharp13UnitTests : SA1304CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1305CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1305CSharp13UnitTests.cs new file mode 100644 index 000000000..00cc44504 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1305CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.NamingRules +{ + using StyleCop.Analyzers.Test.CSharp12.NamingRules; + + public partial class SA1305CSharp13UnitTests : SA1305CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1306CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1306CSharp13UnitTests.cs new file mode 100644 index 000000000..36d8bb40f --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1306CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.NamingRules +{ + using StyleCop.Analyzers.Test.CSharp12.NamingRules; + + public partial class SA1306CSharp13UnitTests : SA1306CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1307CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1307CSharp13UnitTests.cs new file mode 100644 index 000000000..9de9dd373 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1307CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.NamingRules +{ + using StyleCop.Analyzers.Test.CSharp12.NamingRules; + + public partial class SA1307CSharp13UnitTests : SA1307CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1308CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1308CSharp13UnitTests.cs new file mode 100644 index 000000000..24ed19780 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1308CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.NamingRules +{ + using StyleCop.Analyzers.Test.CSharp12.NamingRules; + + public partial class SA1308CSharp13UnitTests : SA1308CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1309CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1309CSharp13UnitTests.cs new file mode 100644 index 000000000..5994d9739 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1309CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.NamingRules +{ + using StyleCop.Analyzers.Test.CSharp12.NamingRules; + + public partial class SA1309CSharp13UnitTests : SA1309CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1310CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1310CSharp13UnitTests.cs new file mode 100644 index 000000000..ba566f72a --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1310CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.NamingRules +{ + using StyleCop.Analyzers.Test.CSharp12.NamingRules; + + public partial class SA1310CSharp13UnitTests : SA1310CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1311CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1311CSharp13UnitTests.cs new file mode 100644 index 000000000..4dc019ff2 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1311CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.NamingRules +{ + using StyleCop.Analyzers.Test.CSharp12.NamingRules; + + public partial class SA1311CSharp13UnitTests : SA1311CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1312CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1312CSharp13UnitTests.cs new file mode 100644 index 000000000..5b8779457 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1312CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.NamingRules +{ + using StyleCop.Analyzers.Test.CSharp12.NamingRules; + + public partial class SA1312CSharp13UnitTests : SA1312CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1313CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1313CSharp13UnitTests.cs new file mode 100644 index 000000000..8aa95742a --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1313CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.NamingRules +{ + using StyleCop.Analyzers.Test.CSharp12.NamingRules; + + public partial class SA1313CSharp13UnitTests : SA1313CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1314CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1314CSharp13UnitTests.cs new file mode 100644 index 000000000..7ff6785ac --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1314CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.NamingRules +{ + using StyleCop.Analyzers.Test.CSharp12.NamingRules; + + public partial class SA1314CSharp13UnitTests : SA1314CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1316CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1316CSharp13UnitTests.cs new file mode 100644 index 000000000..e63c98228 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SA1316CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.NamingRules +{ + using StyleCop.Analyzers.Test.CSharp12.NamingRules; + + public partial class SA1316CSharp13UnitTests : SA1316CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SX1309CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SX1309CSharp13UnitTests.cs new file mode 100644 index 000000000..59701eaf9 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SX1309CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.NamingRules +{ + using StyleCop.Analyzers.Test.CSharp12.NamingRules; + + public partial class SX1309CSharp13UnitTests : SX1309CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SX1309SCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SX1309SCSharp13UnitTests.cs new file mode 100644 index 000000000..fa48201f2 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/NamingRules/SX1309SCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.NamingRules +{ + using StyleCop.Analyzers.Test.CSharp12.NamingRules; + + public partial class SX1309SCSharp13UnitTests : SX1309SCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1200CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1200CSharp13UnitTests.cs new file mode 100644 index 000000000..55729bc2e --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1200CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1200CSharp13UnitTests : SA1200CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1200OutsideNamespaceCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1200OutsideNamespaceCSharp13UnitTests.cs new file mode 100644 index 000000000..a6aac5719 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1200OutsideNamespaceCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1200OutsideNamespaceCSharp13UnitTests : SA1200OutsideNamespaceCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1200PreserveCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1200PreserveCSharp13UnitTests.cs new file mode 100644 index 000000000..932b952d5 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1200PreserveCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1200PreserveCSharp13UnitTests : SA1200PreserveCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1201CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1201CSharp13UnitTests.cs new file mode 100644 index 000000000..45fd75edb --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1201CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1201CSharp13UnitTests : SA1201CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1202CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1202CSharp13UnitTests.cs new file mode 100644 index 000000000..834789ac0 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1202CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1202CSharp13UnitTests : SA1202CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1203CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1203CSharp13UnitTests.cs new file mode 100644 index 000000000..7fbf1b48c --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1203CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1203CSharp13UnitTests : SA1203CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1204CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1204CSharp13UnitTests.cs new file mode 100644 index 000000000..82ebe963d --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1204CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1204CSharp13UnitTests : SA1204CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1205CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1205CSharp13UnitTests.cs new file mode 100644 index 000000000..04269ea8d --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1205CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1205CSharp13UnitTests : SA1205CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1206CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1206CSharp13UnitTests.cs new file mode 100644 index 000000000..66758248d --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1206CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1206CSharp13UnitTests : SA1206CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1206CodeFixProviderCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1206CodeFixProviderCSharp13UnitTests.cs new file mode 100644 index 000000000..bc1652f28 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1206CodeFixProviderCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1206CodeFixProviderCSharp13UnitTests : SA1206CodeFixProviderCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1207CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1207CSharp13UnitTests.cs new file mode 100644 index 000000000..38e68ae23 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1207CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1207CSharp13UnitTests : SA1207CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1208CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1208CSharp13UnitTests.cs new file mode 100644 index 000000000..ca6df0ec0 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1208CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1208CSharp13UnitTests : SA1208CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1209CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1209CSharp13UnitTests.cs new file mode 100644 index 000000000..779a2f034 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1209CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1209CSharp13UnitTests : SA1209CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1210CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1210CSharp13UnitTests.cs new file mode 100644 index 000000000..541419ae4 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1210CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1210CSharp13UnitTests : SA1210CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1210CombinedSystemDirectivesCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1210CombinedSystemDirectivesCSharp13UnitTests.cs new file mode 100644 index 000000000..84781da31 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1210CombinedSystemDirectivesCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1210CombinedSystemDirectivesCSharp13UnitTests : SA1210CombinedSystemDirectivesCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1211CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1211CSharp13UnitTests.cs new file mode 100644 index 000000000..1f9f69d97 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1211CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1211CSharp13UnitTests : SA1211CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1212CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1212CSharp13UnitTests.cs new file mode 100644 index 000000000..492268e5c --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1212CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1212CSharp13UnitTests : SA1212CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1213CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1213CSharp13UnitTests.cs new file mode 100644 index 000000000..9c8e2a373 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1213CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1213CSharp13UnitTests : SA1213CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1214CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1214CSharp13UnitTests.cs new file mode 100644 index 000000000..3bc888431 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1214CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1214CSharp13UnitTests : SA1214CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1215CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1215CSharp13UnitTests.cs new file mode 100644 index 000000000..b44f31ddf --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1215CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1215CSharp13UnitTests : SA1215CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1216CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1216CSharp13UnitTests.cs new file mode 100644 index 000000000..806727701 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1216CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1216CSharp13UnitTests : SA1216CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1217CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1217CSharp13UnitTests.cs new file mode 100644 index 000000000..87473ba37 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/SA1217CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class SA1217CSharp13UnitTests : SA1217CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/UsingCodeFixProviderCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/UsingCodeFixProviderCSharp13UnitTests.cs new file mode 100644 index 000000000..8403e2560 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/UsingCodeFixProviderCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class UsingCodeFixProviderCSharp13UnitTests : UsingCodeFixProviderCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/UsingCodeFixProviderCombinedSystemDirectivesCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/UsingCodeFixProviderCombinedSystemDirectivesCSharp13UnitTests.cs new file mode 100644 index 000000000..0d691d9b7 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/UsingCodeFixProviderCombinedSystemDirectivesCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class UsingCodeFixProviderCombinedSystemDirectivesCSharp13UnitTests : UsingCodeFixProviderCombinedSystemDirectivesCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/UsingCodeFixProviderGroupSeparationCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/UsingCodeFixProviderGroupSeparationCSharp13UnitTests.cs new file mode 100644 index 000000000..a05c73d1a --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/UsingCodeFixProviderGroupSeparationCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class UsingCodeFixProviderGroupSeparationCSharp13UnitTests : UsingCodeFixProviderGroupSeparationCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/UsingCodeFixProviderRegressionCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/UsingCodeFixProviderRegressionCSharp13UnitTests.cs new file mode 100644 index 000000000..a38510cdd --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/OrderingRules/UsingCodeFixProviderRegressionCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.OrderingRules +{ + using StyleCop.Analyzers.Test.CSharp12.OrderingRules; + + public partial class UsingCodeFixProviderRegressionCSharp13UnitTests : UsingCodeFixProviderRegressionCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Properties/AssemblyInfo.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Properties/AssemblyInfo.cs new file mode 100644 index 000000000..faebdb0d6 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Properties/AssemblyInfo.cs @@ -0,0 +1,12 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +using System; +using System.Runtime.InteropServices; + +[assembly: CLSCompliant(false)] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1100CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1100CSharp13UnitTests.cs new file mode 100644 index 000000000..81efa0402 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1100CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1100CSharp13UnitTests : SA1100CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1101CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1101CSharp13UnitTests.cs new file mode 100644 index 000000000..6d8a5b254 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1101CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1101CSharp13UnitTests : SA1101CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1102CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1102CSharp13UnitTests.cs new file mode 100644 index 000000000..1a0ec9fc0 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1102CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1102CSharp13UnitTests : SA1102CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1103CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1103CSharp13UnitTests.cs new file mode 100644 index 000000000..cfd1f899b --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1103CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1103CSharp13UnitTests : SA1103CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1104CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1104CSharp13UnitTests.cs new file mode 100644 index 000000000..75215ac22 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1104CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1104CSharp13UnitTests : SA1104CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1105CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1105CSharp13UnitTests.cs new file mode 100644 index 000000000..a7872b0fa --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1105CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1105CSharp13UnitTests : SA1105CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1106CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1106CSharp13UnitTests.cs new file mode 100644 index 000000000..2ddb2b78c --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1106CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1106CSharp13UnitTests : SA1106CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1107CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1107CSharp13UnitTests.cs new file mode 100644 index 000000000..3337bc7c5 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1107CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1107CSharp13UnitTests : SA1107CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1108CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1108CSharp13UnitTests.cs new file mode 100644 index 000000000..8a70c2fe3 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1108CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1108CSharp13UnitTests : SA1108CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1109CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1109CSharp13UnitTests.cs new file mode 100644 index 000000000..5809a3d70 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1109CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1109CSharp13UnitTests : SA1109CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1110CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1110CSharp13UnitTests.cs new file mode 100644 index 000000000..b88dc7082 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1110CSharp13UnitTests.cs @@ -0,0 +1,23 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using Microsoft.CodeAnalysis.Testing; + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + using static StyleCop.Analyzers.Test.Verifiers.StyleCopCodeFixVerifier< + StyleCop.Analyzers.ReadabilityRules.SA1110OpeningParenthesisMustBeOnDeclarationLine, + StyleCop.Analyzers.SpacingRules.TokenSpacingCodeFixProvider>; + + public partial class SA1110CSharp13UnitTests : SA1110CSharp12UnitTests + { + protected override DiagnosticResult[] GetExpectedResultTestPrimaryConstructorBaseList() + { + return new[] + { + // Diagnostic previously issued twice because of https://github.com/dotnet/roslyn/issues/70488 + Diagnostic().WithLocation(0), + }; + } + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1111CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1111CSharp13UnitTests.cs new file mode 100644 index 000000000..5af5ec77b --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1111CSharp13UnitTests.cs @@ -0,0 +1,23 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using Microsoft.CodeAnalysis.Testing; + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + using static StyleCop.Analyzers.Test.Verifiers.StyleCopCodeFixVerifier< + StyleCop.Analyzers.ReadabilityRules.SA1111ClosingParenthesisMustBeOnLineOfLastParameter, + StyleCop.Analyzers.SpacingRules.TokenSpacingCodeFixProvider>; + + public partial class SA1111CSharp13UnitTests : SA1111CSharp12UnitTests + { + protected override DiagnosticResult[] GetExpectedResultTestPrimaryConstructorBaseList() + { + return new[] + { + // Diagnostic previously issued twice because of https://github.com/dotnet/roslyn/issues/70488 + Diagnostic().WithLocation(0), + }; + } + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1112CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1112CSharp13UnitTests.cs new file mode 100644 index 000000000..8b2008d21 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1112CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1112CSharp13UnitTests : SA1112CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1113CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1113CSharp13UnitTests.cs new file mode 100644 index 000000000..0121fea58 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1113CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1113CSharp13UnitTests : SA1113CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1114CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1114CSharp13UnitTests.cs new file mode 100644 index 000000000..4c3775479 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1114CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1114CSharp13UnitTests : SA1114CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1115CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1115CSharp13UnitTests.cs new file mode 100644 index 000000000..4038ff9e9 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1115CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1115CSharp13UnitTests : SA1115CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1116CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1116CSharp13UnitTests.cs new file mode 100644 index 000000000..6e491378d --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1116CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1116CSharp13UnitTests : SA1116CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1117CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1117CSharp13UnitTests.cs new file mode 100644 index 000000000..1e7310505 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1117CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1117CSharp13UnitTests : SA1117CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1118CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1118CSharp13UnitTests.cs new file mode 100644 index 000000000..c5ddc1b9e --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1118CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1118CSharp13UnitTests : SA1118CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1120CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1120CSharp13UnitTests.cs new file mode 100644 index 000000000..73bfd03da --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1120CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1120CSharp13UnitTests : SA1120CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1121CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1121CSharp13UnitTests.cs new file mode 100644 index 000000000..2c38cb65a --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1121CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1121CSharp13UnitTests : SA1121CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1122CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1122CSharp13UnitTests.cs new file mode 100644 index 000000000..8a8f594ac --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1122CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1122CSharp13UnitTests : SA1122CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1123CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1123CSharp13UnitTests.cs new file mode 100644 index 000000000..a9e7d31f6 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1123CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1123CSharp13UnitTests : SA1123CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1124CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1124CSharp13UnitTests.cs new file mode 100644 index 000000000..0280342b6 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1124CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1124CSharp13UnitTests : SA1124CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1125CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1125CSharp13UnitTests.cs new file mode 100644 index 000000000..20684ea83 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1125CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1125CSharp13UnitTests : SA1125CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1126CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1126CSharp13UnitTests.cs new file mode 100644 index 000000000..e3b17059d --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1126CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1126CSharp13UnitTests : SA1126CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1127CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1127CSharp13UnitTests.cs new file mode 100644 index 000000000..4ea4f88db --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1127CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1127CSharp13UnitTests : SA1127CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1128CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1128CSharp13UnitTests.cs new file mode 100644 index 000000000..dc9abafe7 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1128CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1128CSharp13UnitTests : SA1128CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1129CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1129CSharp13UnitTests.cs new file mode 100644 index 000000000..9f5a7eb31 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1129CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1129CSharp13UnitTests : SA1129CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1130CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1130CSharp13UnitTests.cs new file mode 100644 index 000000000..b464746e3 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1130CSharp13UnitTests.cs @@ -0,0 +1,23 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using Microsoft.CodeAnalysis.Testing; + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1130CSharp13UnitTests : SA1130CSharp12UnitTests + { + protected override DiagnosticResult[] GetCompilerExpectedResultCodeFixSpecialCases() + { + return new[] + { + DiagnosticResult.CompilerError("CS1065").WithLocation(12, 53), + DiagnosticResult.CompilerError("CS7014").WithLocation(13, 47), + DiagnosticResult.CompilerError("CS1670").WithLocation(14, 47), + DiagnosticResult.CompilerError("CS1669").WithLocation(15, 42), + DiagnosticResult.CompilerError("CS0225").WithLocation(14, 47), + }; + } + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1131CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1131CSharp13UnitTests.cs new file mode 100644 index 000000000..facbc5825 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1131CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1131CSharp13UnitTests : SA1131CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1132CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1132CSharp13UnitTests.cs new file mode 100644 index 000000000..335b0380b --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1132CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1132CSharp13UnitTests : SA1132CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1133CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1133CSharp13UnitTests.cs new file mode 100644 index 000000000..2b671fb83 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1133CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1133CSharp13UnitTests : SA1133CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1134CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1134CSharp13UnitTests.cs new file mode 100644 index 000000000..be1c9e21f --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1134CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1134CSharp13UnitTests : SA1134CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1135CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1135CSharp13UnitTests.cs new file mode 100644 index 000000000..faae97e26 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1135CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1135CSharp13UnitTests : SA1135CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1136CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1136CSharp13UnitTests.cs new file mode 100644 index 000000000..ba37dfbc4 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1136CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1136CSharp13UnitTests : SA1136CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1137CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1137CSharp13UnitTests.cs new file mode 100644 index 000000000..8ba783cb6 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1137CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1137CSharp13UnitTests : SA1137CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1139CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1139CSharp13UnitTests.cs new file mode 100644 index 000000000..7ef5838ed --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1139CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1139CSharp13UnitTests : SA1139CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1141CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1141CSharp13UnitTests.cs new file mode 100644 index 000000000..b3384d579 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1141CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1141CSharp13UnitTests : SA1141CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1142CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1142CSharp13UnitTests.cs new file mode 100644 index 000000000..89c8ede05 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SA1142CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SA1142CSharp13UnitTests : SA1142CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SX1101CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SX1101CSharp13UnitTests.cs new file mode 100644 index 000000000..20d7c6023 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/ReadabilityRules/SX1101CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.ReadabilityRules +{ + using StyleCop.Analyzers.Test.CSharp12.ReadabilityRules; + + public partial class SX1101CSharp13UnitTests : SX1101CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Settings/SettingsCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Settings/SettingsCSharp13UnitTests.cs new file mode 100644 index 000000000..f96051b52 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Settings/SettingsCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Settings +{ + using StyleCop.Analyzers.Test.CSharp12.Settings; + + public partial class SettingsCSharp13UnitTests : SettingsCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Settings/SettingsFileCodeFixProviderCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Settings/SettingsFileCodeFixProviderCSharp13UnitTests.cs new file mode 100644 index 000000000..b857f5d67 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/Settings/SettingsFileCodeFixProviderCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.Settings +{ + using StyleCop.Analyzers.Test.CSharp12.Settings; + + public partial class SettingsFileCodeFixProviderCSharp13UnitTests : SettingsFileCodeFixProviderCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1000CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1000CSharp13UnitTests.cs new file mode 100644 index 000000000..9f95df570 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1000CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1000CSharp13UnitTests : SA1000CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1001CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1001CSharp13UnitTests.cs new file mode 100644 index 000000000..bf08e7aa5 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1001CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1001CSharp13UnitTests : SA1001CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1002CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1002CSharp13UnitTests.cs new file mode 100644 index 000000000..7539c6667 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1002CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1002CSharp13UnitTests : SA1002CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1003CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1003CSharp13UnitTests.cs new file mode 100644 index 000000000..d525884f1 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1003CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1003CSharp13UnitTests : SA1003CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1004CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1004CSharp13UnitTests.cs new file mode 100644 index 000000000..f4c4cc6ba --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1004CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1004CSharp13UnitTests : SA1004CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1005CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1005CSharp13UnitTests.cs new file mode 100644 index 000000000..e38fa56c7 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1005CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1005CSharp13UnitTests : SA1005CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1006CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1006CSharp13UnitTests.cs new file mode 100644 index 000000000..183787119 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1006CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1006CSharp13UnitTests : SA1006CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1007CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1007CSharp13UnitTests.cs new file mode 100644 index 000000000..4ddaf676d --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1007CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1007CSharp13UnitTests : SA1007CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1008CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1008CSharp13UnitTests.cs new file mode 100644 index 000000000..be2701a7a --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1008CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1008CSharp13UnitTests : SA1008CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1009CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1009CSharp13UnitTests.cs new file mode 100644 index 000000000..f37c5a59d --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1009CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1009CSharp13UnitTests : SA1009CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1010CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1010CSharp13UnitTests.cs new file mode 100644 index 000000000..950a8f345 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1010CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1010CSharp13UnitTests : SA1010CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1011CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1011CSharp13UnitTests.cs new file mode 100644 index 000000000..80d61327a --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1011CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1011CSharp13UnitTests : SA1011CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1012CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1012CSharp13UnitTests.cs new file mode 100644 index 000000000..817d66bd2 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1012CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1012CSharp13UnitTests : SA1012CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1013CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1013CSharp13UnitTests.cs new file mode 100644 index 000000000..3d00f7565 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1013CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1013CSharp13UnitTests : SA1013CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1014CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1014CSharp13UnitTests.cs new file mode 100644 index 000000000..e452b3e90 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1014CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1014CSharp13UnitTests : SA1014CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1015CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1015CSharp13UnitTests.cs new file mode 100644 index 000000000..03838b674 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1015CSharp13UnitTests.cs @@ -0,0 +1,19 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using Microsoft.CodeAnalysis.Testing; + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1015CSharp13UnitTests : SA1015CSharp12UnitTests + { + protected override DiagnosticResult[] GetExpectedResultMissingToken() + { + return new[] + { + DiagnosticResult.CompilerError("CS1003").WithLocation(7, 35).WithArguments(">"), + }; + } + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1016CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1016CSharp13UnitTests.cs new file mode 100644 index 000000000..41b8567fe --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1016CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1016CSharp13UnitTests : SA1016CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1017CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1017CSharp13UnitTests.cs new file mode 100644 index 000000000..544ff7a12 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1017CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1017CSharp13UnitTests : SA1017CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1018CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1018CSharp13UnitTests.cs new file mode 100644 index 000000000..706e3c571 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1018CSharp13UnitTests.cs @@ -0,0 +1,23 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using Microsoft.CodeAnalysis.Testing; + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1018CSharp13UnitTests : SA1018CSharp12UnitTests + { + protected override DiagnosticResult[] GetExpectedResultSyntaxErrorAtEndOfFile() + { + return new[] + { + DiagnosticResult.CompilerError("CS1031").WithLocation(10, 2), + DiagnosticResult.CompilerError("CS8803").WithLocation(11, 1), + DiagnosticResult.CompilerError("CS8805").WithLocation(11, 1), + DiagnosticResult.CompilerError("CS1001").WithLocation(11, 2), + DiagnosticResult.CompilerError("CS1002").WithLocation(11, 2), + }; + } + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1019CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1019CSharp13UnitTests.cs new file mode 100644 index 000000000..3666352c3 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1019CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1019CSharp13UnitTests : SA1019CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1020CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1020CSharp13UnitTests.cs new file mode 100644 index 000000000..1d0a4887a --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1020CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1020CSharp13UnitTests : SA1020CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1021CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1021CSharp13UnitTests.cs new file mode 100644 index 000000000..bdd3f0745 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1021CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1021CSharp13UnitTests : SA1021CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1022CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1022CSharp13UnitTests.cs new file mode 100644 index 000000000..2f2226a91 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1022CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1022CSharp13UnitTests : SA1022CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1023CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1023CSharp13UnitTests.cs new file mode 100644 index 000000000..3efaee985 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1023CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1023CSharp13UnitTests : SA1023CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1024CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1024CSharp13UnitTests.cs new file mode 100644 index 000000000..41acd9f71 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1024CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1024CSharp13UnitTests : SA1024CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1025CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1025CSharp13UnitTests.cs new file mode 100644 index 000000000..55b0fd4f4 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1025CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1025CSharp13UnitTests : SA1025CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1026CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1026CSharp13UnitTests.cs new file mode 100644 index 000000000..30ae95556 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1026CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1026CSharp13UnitTests : SA1026CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1027AlternateIndentationCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1027AlternateIndentationCSharp13UnitTests.cs new file mode 100644 index 000000000..2af72bfb6 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1027AlternateIndentationCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1027AlternateIndentationCSharp13UnitTests : SA1027AlternateIndentationCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1027CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1027CSharp13UnitTests.cs new file mode 100644 index 000000000..6ad0a6346 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1027CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1027CSharp13UnitTests : SA1027CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1027UseTabsCSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1027UseTabsCSharp13UnitTests.cs new file mode 100644 index 000000000..3059622f9 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1027UseTabsCSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1027UseTabsCSharp13UnitTests : SA1027UseTabsCSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1028CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1028CSharp13UnitTests.cs new file mode 100644 index 000000000..9dc1578ed --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpacingRules/SA1028CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpacingRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpacingRules; + + public partial class SA1028CSharp13UnitTests : SA1028CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpecialRules/SA0001CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpecialRules/SA0001CSharp13UnitTests.cs new file mode 100644 index 000000000..3ac574c7d --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpecialRules/SA0001CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpecialRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpecialRules; + + public partial class SA0001CSharp13UnitTests : SA0001CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpecialRules/SA0002CSharp13UnitTests.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpecialRules/SA0002CSharp13UnitTests.cs new file mode 100644 index 000000000..b16bee9c6 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/SpecialRules/SA0002CSharp13UnitTests.cs @@ -0,0 +1,11 @@ +// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved. +// Licensed under the MIT License. See LICENSE in the project root for license information. + +namespace StyleCop.Analyzers.Test.CSharp13.SpecialRules +{ + using StyleCop.Analyzers.Test.CSharp12.SpecialRules; + + public partial class SA0002CSharp13UnitTests : SA0002CSharp12UnitTests + { + } +} diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/StyleCop.Analyzers.Test.CSharp13.csproj b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/StyleCop.Analyzers.Test.CSharp13.csproj new file mode 100644 index 000000000..f6a068fd6 --- /dev/null +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/StyleCop.Analyzers.Test.CSharp13.csproj @@ -0,0 +1,39 @@ + + + + + net472 + false + true + true + + + + ..\StyleCop.Analyzers.Internal.ruleset + + + + true + ..\..\build\keys\TestingKey.snk + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/StyleCop.Analyzers/StyleCop.Analyzers.Test/Properties/AssemblyInfo.cs b/StyleCop.Analyzers/StyleCop.Analyzers.Test/Properties/AssemblyInfo.cs index 99c4753f5..f68af6485 100644 --- a/StyleCop.Analyzers/StyleCop.Analyzers.Test/Properties/AssemblyInfo.cs +++ b/StyleCop.Analyzers/StyleCop.Analyzers.Test/Properties/AssemblyInfo.cs @@ -1,8 +1,6 @@ // 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 - using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; @@ -20,3 +18,4 @@ [assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp10, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c36d40d996fcc95fb6a89754728616758f459026e31478ce93633b3e27a4af416f103aa3d7a9e7998f829f8715cc1240d30724fd662042550fa71357b19562622424267e9e4640c403edbe64709a9ca5918128a9b9020b0db6e770d0dd1eac888869c23a835b74bde00e171984b1d1c24636cf030f0b23106e73035a2be145a6")] [assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp11, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c36d40d996fcc95fb6a89754728616758f459026e31478ce93633b3e27a4af416f103aa3d7a9e7998f829f8715cc1240d30724fd662042550fa71357b19562622424267e9e4640c403edbe64709a9ca5918128a9b9020b0db6e770d0dd1eac888869c23a835b74bde00e171984b1d1c24636cf030f0b23106e73035a2be145a6")] [assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp12, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c36d40d996fcc95fb6a89754728616758f459026e31478ce93633b3e27a4af416f103aa3d7a9e7998f829f8715cc1240d30724fd662042550fa71357b19562622424267e9e4640c403edbe64709a9ca5918128a9b9020b0db6e770d0dd1eac888869c23a835b74bde00e171984b1d1c24636cf030f0b23106e73035a2be145a6")] +[assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp13, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c36d40d996fcc95fb6a89754728616758f459026e31478ce93633b3e27a4af416f103aa3d7a9e7998f829f8715cc1240d30724fd662042550fa71357b19562622424267e9e4640c403edbe64709a9ca5918128a9b9020b0db6e770d0dd1eac888869c23a835b74bde00e171984b1d1c24636cf030f0b23106e73035a2be145a6")] diff --git a/StyleCop.Analyzers/StyleCop.Analyzers/Lightup/LanguageVersionEx.cs b/StyleCop.Analyzers/StyleCop.Analyzers/Lightup/LanguageVersionEx.cs index 7060401e8..effed9196 100644 --- a/StyleCop.Analyzers/StyleCop.Analyzers/Lightup/LanguageVersionEx.cs +++ b/StyleCop.Analyzers/StyleCop.Analyzers/Lightup/LanguageVersionEx.cs @@ -1,8 +1,6 @@ // 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 - #pragma warning disable SA1310 // Field names should not contain underscore - Following roslyn naming conventions namespace StyleCop.Analyzers.Lightup @@ -21,6 +19,7 @@ internal static class LanguageVersionEx public const LanguageVersion CSharp10 = (LanguageVersion)1000; public const LanguageVersion CSharp11 = (LanguageVersion)1100; public const LanguageVersion CSharp12 = (LanguageVersion)1200; + public const LanguageVersion CSharp13 = (LanguageVersion)1300; public const LanguageVersion LatestMajor = (LanguageVersion)int.MaxValue - 2; public const LanguageVersion Preview = (LanguageVersion)int.MaxValue - 1; public const LanguageVersion Latest = (LanguageVersion)int.MaxValue; diff --git a/StyleCop.Analyzers/StyleCop.Analyzers/Lightup/LightupHelpers.cs b/StyleCop.Analyzers/StyleCop.Analyzers/Lightup/LightupHelpers.cs index 6e4dabe10..081eb0ad3 100644 --- a/StyleCop.Analyzers/StyleCop.Analyzers/Lightup/LightupHelpers.cs +++ b/StyleCop.Analyzers/StyleCop.Analyzers/Lightup/LightupHelpers.cs @@ -52,6 +52,9 @@ private static readonly ConcurrentDictionary SupportsCSharp73; internal static bool CanWrapObject(object obj, Type underlyingType) diff --git a/StyleCop.Analyzers/StyleCop.Analyzers/Properties/AssemblyInfo.cs b/StyleCop.Analyzers/StyleCop.Analyzers/Properties/AssemblyInfo.cs index 11c7e48bd..1ee24c80d 100644 --- a/StyleCop.Analyzers/StyleCop.Analyzers/Properties/AssemblyInfo.cs +++ b/StyleCop.Analyzers/StyleCop.Analyzers/Properties/AssemblyInfo.cs @@ -1,8 +1,6 @@ // 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 - using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; @@ -25,4 +23,5 @@ [assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp10, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c36d40d996fcc95fb6a89754728616758f459026e31478ce93633b3e27a4af416f103aa3d7a9e7998f829f8715cc1240d30724fd662042550fa71357b19562622424267e9e4640c403edbe64709a9ca5918128a9b9020b0db6e770d0dd1eac888869c23a835b74bde00e171984b1d1c24636cf030f0b23106e73035a2be145a6")] [assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp11, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c36d40d996fcc95fb6a89754728616758f459026e31478ce93633b3e27a4af416f103aa3d7a9e7998f829f8715cc1240d30724fd662042550fa71357b19562622424267e9e4640c403edbe64709a9ca5918128a9b9020b0db6e770d0dd1eac888869c23a835b74bde00e171984b1d1c24636cf030f0b23106e73035a2be145a6")] [assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp12, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c36d40d996fcc95fb6a89754728616758f459026e31478ce93633b3e27a4af416f103aa3d7a9e7998f829f8715cc1240d30724fd662042550fa71357b19562622424267e9e4640c403edbe64709a9ca5918128a9b9020b0db6e770d0dd1eac888869c23a835b74bde00e171984b1d1c24636cf030f0b23106e73035a2be145a6")] +[assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp13, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c36d40d996fcc95fb6a89754728616758f459026e31478ce93633b3e27a4af416f103aa3d7a9e7998f829f8715cc1240d30724fd662042550fa71357b19562622424267e9e4640c403edbe64709a9ca5918128a9b9020b0db6e770d0dd1eac888869c23a835b74bde00e171984b1d1c24636cf030f0b23106e73035a2be145a6")] [assembly: InternalsVisibleTo("StyleCopTester, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c36d40d996fcc95fb6a89754728616758f459026e31478ce93633b3e27a4af416f103aa3d7a9e7998f829f8715cc1240d30724fd662042550fa71357b19562622424267e9e4640c403edbe64709a9ca5918128a9b9020b0db6e770d0dd1eac888869c23a835b74bde00e171984b1d1c24636cf030f0b23106e73035a2be145a6")] diff --git a/StyleCopAnalyzers.sln b/StyleCopAnalyzers.sln index aa0e6767e..a64b7efcf 100644 --- a/StyleCopAnalyzers.sln +++ b/StyleCopAnalyzers.sln @@ -25,10 +25,12 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{A0840AD0-B615-487C-AEFF-9DCB691D037B}" ProjectSection(SolutionItems) = preProject + build\build-and-test.yml = build\build-and-test.yml build\build.ps1 = build\build.ps1 StyleCop.Analyzers\Directory.Build.props = StyleCop.Analyzers\Directory.Build.props StyleCop.Analyzers\Directory.Build.targets = StyleCop.Analyzers\Directory.Build.targets build\opencover-report.ps1 = build\opencover-report.ps1 + build\test.yml = build\test.yml EndProjectSection EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "documentation", "documentation", "{19DD9E9D-877A-4492-9B7F-2E681DD58308}" @@ -274,6 +276,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StyleCop.Analyzers.PrivateC EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StyleCop.Analyzers.Test.CSharp12", "StyleCop.Analyzers\StyleCop.Analyzers.Test.CSharp12\StyleCop.Analyzers.Test.CSharp12.csproj", "{A900C5D5-D324-4145-B795-A347A50919C7}" EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "StyleCop.Analyzers.Test.CSharp13", "StyleCop.Analyzers\StyleCop.Analyzers.Test.CSharp13\StyleCop.Analyzers.Test.CSharp13.csproj", "{B5C55311-BC8D-43D7-A56F-17B4E2FE8D55}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -336,6 +340,10 @@ Global {A900C5D5-D324-4145-B795-A347A50919C7}.Debug|Any CPU.Build.0 = Debug|Any CPU {A900C5D5-D324-4145-B795-A347A50919C7}.Release|Any CPU.ActiveCfg = Release|Any CPU {A900C5D5-D324-4145-B795-A347A50919C7}.Release|Any CPU.Build.0 = Release|Any CPU + {B5C55311-BC8D-43D7-A56F-17B4E2FE8D55}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B5C55311-BC8D-43D7-A56F-17B4E2FE8D55}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B5C55311-BC8D-43D7-A56F-17B4E2FE8D55}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B5C55311-BC8D-43D7-A56F-17B4E2FE8D55}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/build/build-and-test.yml b/build/build-and-test.yml index 4638aeb99..6e97ac159 100644 --- a/build/build-and-test.yml +++ b/build/build-and-test.yml @@ -111,6 +111,12 @@ stages: targetPath: $(Build.SourcesDirectory)/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp12/bin artifact: buildTest-cs12-${{ parameters.BuildConfiguration }} + - task: PublishPipelineArtifact@1 + displayName: Publish build output (Test C# 13) + inputs: + targetPath: $(Build.SourcesDirectory)/StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp13/bin + artifact: buildTest-cs13-${{ parameters.BuildConfiguration }} + - stage: Test_CSharp_6_${{ parameters.BuildConfiguration }} displayName: Test C# 6 ${{ parameters.BuildConfiguration }} dependsOn: [ 'Build_${{ parameters.BuildConfiguration }}' ] @@ -195,6 +201,18 @@ stages: LangVersion: '12' FrameworkVersion: 'net472' +- stage: Test_CSharp_13_${{ parameters.BuildConfiguration }} + displayName: Test C# 13 ${{ parameters.BuildConfiguration }} + dependsOn: [ 'Build_${{ parameters.BuildConfiguration }}' ] + jobs: + - template: test.yml + parameters: + BuildConfiguration: ${{ parameters.BuildConfiguration }} + BuildSolution: ${{ parameters.BuildSolution }} + BuildPlatform: ${{ parameters.BuildPlatform }} + LangVersion: '13' + FrameworkVersion: 'net472' + - stage: Publish_Code_Coverage_${{ parameters.BuildConfiguration }} displayName: Publish Code Coverage condition: eq('${{ parameters.BuildConfiguration }}', 'Debug') @@ -206,6 +224,7 @@ stages: - Test_CSharp_10_${{ parameters.BuildConfiguration }} - Test_CSharp_11_${{ parameters.BuildConfiguration }} - Test_CSharp_12_${{ parameters.BuildConfiguration }} + - Test_CSharp_13_${{ parameters.BuildConfiguration }} jobs: - job: WrapUp steps: @@ -247,6 +266,10 @@ stages: artifact: coverageResults-cs12 displayName: 🔻 Download C# 12 code coverage results continueOnError: true + - download: current + artifact: coverageResults-cs13 + displayName: 🔻 Download C# 13 code coverage results + continueOnError: true - task: PowerShell@2 displayName: ⚙ Merge coverage timeoutInMinutes: 20 diff --git a/build/opencover-report.ps1 b/build/opencover-report.ps1 index 4f2b0b617..4e0bc3402 100644 --- a/build/opencover-report.ps1 +++ b/build/opencover-report.ps1 @@ -45,6 +45,7 @@ $target_dll_csharp9 = "..\StyleCop.Analyzers\StyleCop.Analyzers.Test.CSharp9\bin $target_dll_csharp10 = "..\StyleCop.Analyzers\StyleCop.Analyzers.Test.CSharp10\bin\$Configuration\net472\StyleCop.Analyzers.Test.CSharp10.dll" $target_dll_csharp11 = "..\StyleCop.Analyzers\StyleCop.Analyzers.Test.CSharp11\bin\$Configuration\net472\StyleCop.Analyzers.Test.CSharp11.dll" $target_dll_csharp12 = "..\StyleCop.Analyzers\StyleCop.Analyzers.Test.CSharp12\bin\$Configuration\net472\StyleCop.Analyzers.Test.CSharp12.dll" +$target_dll_csharp13 = "..\StyleCop.Analyzers\StyleCop.Analyzers.Test.CSharp13\bin\$Configuration\net472\StyleCop.Analyzers.Test.CSharp13.dll" If (Test-Path $report_folder) { Remove-Item -Recurse -Force $report_folder @@ -187,6 +188,24 @@ If (($AppVeyor -or $Azure) -and -not $?) { $exitCode = $LASTEXITCODE } +&$opencover_console ` + -register:$register_mode ` + -threshold:1 -oldStyle ` + -returntargetcode ` + -hideskipped:All ` + -filter:"+[StyleCop*]*" ` + -excludebyattribute:*.ExcludeFromCodeCoverage* ` + -excludebyfile:*\*Designer.cs ` + -output:"$report_folder\OpenCover.StyleCopAnalyzers.xml" ` + -mergebyhash -mergeoutput ` + -target:"$xunit_runner_console_net472" ` + -targetargs:"$target_dll_csharp13 -noshadow $AppVeyorArg -xml StyleCopAnalyzers.CSharp13.xunit.xml" + +If (($AppVeyor -or $Azure) -and -not $?) { + $host.UI.WriteErrorLine('Build failed; coverage analysis may be incomplete.') + $exitCode = $LASTEXITCODE +} + If (-not $NoReport) { &$report_generator -targetdir:$report_folder -reports:$report_folder\OpenCover.*.xml $host.UI.WriteLine("Open $report_folder\index.htm to see code coverage results.") diff --git a/build/test.yml b/build/test.yml index e1491acdf..351f17b3d 100644 --- a/build/test.yml +++ b/build/test.yml @@ -8,7 +8,7 @@ displayName: C# Language Version type: string default: '6' - values: [ '6', '7', '8', '9', '10', '11', '12' ] + values: [ '6', '7', '8', '9', '10', '11', '12', '13' ] - name: FrameworkVersion displayName: .NET Framework Version type: string