Skip to content

Commit dc41c13

Browse files
committed
Add missing test files and fix inheritance
1 parent 5f386bc commit dc41c13

File tree

14 files changed

+138
-5
lines changed

14 files changed

+138
-5
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the MIT License. See LICENSE in the project root for license information.
3+
4+
namespace StyleCop.Analyzers.Test.CSharp10.MaintainabilityRules
5+
{
6+
using StyleCop.Analyzers.Test.CSharp9.MaintainabilityRules;
7+
8+
public partial class SA1414CSharp10UnitTests : SA1414CSharp9UnitTests
9+
{
10+
}
11+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the MIT License. See LICENSE in the project root for license information.
3+
4+
namespace StyleCop.Analyzers.Test.CSharp10.ReadabilityRules
5+
{
6+
using StyleCop.Analyzers.Test.CSharp9.ReadabilityRules;
7+
8+
public partial class SA1141CSharp10UnitTests : SA1141CSharp9UnitTests
9+
{
10+
}
11+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the MIT License. See LICENSE in the project root for license information.
3+
4+
namespace StyleCop.Analyzers.Test.CSharp10.ReadabilityRules
5+
{
6+
using StyleCop.Analyzers.Test.CSharp9.ReadabilityRules;
7+
8+
public partial class SA1142CSharp10UnitTests : SA1142CSharp9UnitTests
9+
{
10+
}
11+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the MIT License. See LICENSE in the project root for license information.
3+
4+
namespace StyleCop.Analyzers.Test.CSharp11.MaintainabilityRules
5+
{
6+
using StyleCop.Analyzers.Test.CSharp10.MaintainabilityRules;
7+
8+
public partial class SA1414CSharp11UnitTests : SA1414CSharp10UnitTests
9+
{
10+
}
11+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the MIT License. See LICENSE in the project root for license information.
3+
4+
namespace StyleCop.Analyzers.Test.CSharp11.ReadabilityRules
5+
{
6+
using StyleCop.Analyzers.Test.CSharp10.ReadabilityRules;
7+
8+
public partial class SA1141CSharp11UnitTests : SA1141CSharp10UnitTests
9+
{
10+
}
11+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the MIT License. See LICENSE in the project root for license information.
3+
4+
namespace StyleCop.Analyzers.Test.CSharp11.ReadabilityRules
5+
{
6+
using StyleCop.Analyzers.Test.CSharp10.ReadabilityRules;
7+
8+
public partial class SA1142CSharp11UnitTests : SA1142CSharp10UnitTests
9+
{
10+
}
11+
}

StyleCop.Analyzers/StyleCop.Analyzers.Test.CSharp7/ReadabilityRules/SA1141CSharp7UnitTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ namespace StyleCop.Analyzers.Test.CSharp7.ReadabilityRules
99
using System.Threading.Tasks;
1010
using Microsoft.CodeAnalysis.Testing;
1111
using StyleCop.Analyzers.ReadabilityRules;
12+
using StyleCop.Analyzers.Test.ReadabilityRules;
1213
using Xunit;
1314
using static StyleCop.Analyzers.Test.Verifiers.StyleCopCodeFixVerifier<
1415
StyleCop.Analyzers.ReadabilityRules.SA1141UseTupleSyntax,
@@ -19,7 +20,7 @@ namespace StyleCop.Analyzers.Test.CSharp7.ReadabilityRules
1920
/// </summary>
2021
/// <seealso cref="SA1141UseTupleSyntax"/>
2122
/// <seealso cref="SA1141CodeFixProvider"/>
22-
public class SA1141CSharp7UnitTests
23+
public partial class SA1141CSharp7UnitTests : SA1141UnitTests
2324
{
2425
/// <summary>
2526
/// Verifies that member declarations containing ValueTuple will result in the proper diagnostics and fixes.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the MIT License. See LICENSE in the project root for license information.
3+
4+
namespace StyleCop.Analyzers.Test.CSharp8.MaintainabilityRules
5+
{
6+
using StyleCop.Analyzers.Test.CSharp7.MaintainabilityRules;
7+
8+
public partial class SA1414CSharp8UnitTests : SA1414CSharp7UnitTests
9+
{
10+
}
11+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the MIT License. See LICENSE in the project root for license information.
3+
4+
namespace StyleCop.Analyzers.Test.CSharp8.ReadabilityRules
5+
{
6+
using StyleCop.Analyzers.Test.CSharp7.ReadabilityRules;
7+
8+
public partial class SA1141CSharp8UnitTests : SA1141CSharp7UnitTests
9+
{
10+
}
11+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the MIT License. See LICENSE in the project root for license information.
3+
4+
namespace StyleCop.Analyzers.Test.CSharp8.ReadabilityRules
5+
{
6+
using StyleCop.Analyzers.Test.CSharp7.ReadabilityRules;
7+
8+
public partial class SA1142CSharp8UnitTests : SA1142CSharp7UnitTests
9+
{
10+
}
11+
}

0 commit comments

Comments
 (0)