Skip to content

Commit

Permalink
[GH-138] - code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tpodolak committed Mar 22, 2020
1 parent 36acc01 commit 0c625e6
Show file tree
Hide file tree
Showing 91 changed files with 233 additions and 237 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ namespace NSubstitute.Analyzers.CSharp.CodeRefactoringProviders
[ExportCodeRefactoringProvider(LanguageNames.CSharp)]
internal sealed class IntroduceSubstituteCodeRefactoringProvider : AbstractIntroduceSubstituteCodeRefactoringProvider<ObjectCreationExpressionSyntax, ArgumentListSyntax, ArgumentSyntax>
{
protected override int ReadonlySubstituteDeclarationContainerRawKind { get; } = (int)SyntaxKind.ClassDeclaration;

protected override int LocalSubstituteDeclarationContainerRawKind { get; } = (int)SyntaxKind.Block;

protected override IReadOnlyList<ArgumentSyntax> GetArgumentSyntaxNodes(ArgumentListSyntax argumentListSyntax, TextSpan span)
{
return argumentListSyntax.Arguments;
Expand All @@ -37,6 +33,23 @@ protected override ObjectCreationExpressionSyntax UpdateObjectCreationExpression
return objectCreationExpressionSyntax.WithArgumentList(updatedArgumentList);
}

protected override SyntaxNode FindSiblingNodeForLocalSubstitute(ObjectCreationExpressionSyntax creationExpression)
{
var container = creationExpression.Ancestors()
.FirstOrDefault(ancestor => ancestor.Kind() == SyntaxKind.Block);

return container?.ChildNodes().FirstOrDefault();
}

protected override SyntaxNode FindSiblingNodeForReadonlySubstitute(SyntaxNode creationExpression)
{
var typeDeclarationSyntax = creationExpression.Ancestors()
.OfType<TypeDeclarationSyntax>()
.FirstOrDefault();

return typeDeclarationSyntax?.Members.FirstOrDefault();
}

private static ArgumentListSyntax UpdateArgumentListTrivia(
ArgumentListSyntax originalArgumentList,
ArgumentListSyntax updatedArgumentList)
Expand Down

Large diffs are not rendered by default.

19 changes: 0 additions & 19 deletions src/NSubstitute.Analyzers.Shared/Extensions/IListExtensions.cs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

namespace NSubstitute.Analyzers.Shared.Extensions
{
public static class SyntaxGeneratorExtension
internal static class SyntaxGeneratorExtension
{
public static SyntaxNode SubstituteForInvocationExpression(
this SyntaxGenerator syntaxGenerator,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ namespace NSubstitute.Analyzers.VisualBasic.CodeRefactoringProviders
[ExportCodeRefactoringProvider(LanguageNames.VisualBasic)]
internal sealed class IntroduceSubstituteCodeRefactoringProvider : AbstractIntroduceSubstituteCodeRefactoringProvider<ObjectCreationExpressionSyntax, ArgumentListSyntax, ArgumentSyntax>
{
protected override int ReadonlySubstituteDeclarationContainerRawKind { get; } = (int)SyntaxKind.ClassBlock;

protected override int LocalSubstituteDeclarationContainerRawKind { get; } = (int)SyntaxKind.SubBlock;

protected override IReadOnlyList<ArgumentSyntax> GetArgumentSyntaxNodes(ArgumentListSyntax argumentListSyntax, TextSpan span)
{
return argumentListSyntax.Arguments;
Expand All @@ -35,7 +31,7 @@ protected override bool IsMissing(ArgumentSyntax argumentSyntax)
return base.IsMissing(argumentSyntax) || argumentSyntax.IsOmitted;
}

protected override SyntaxNode FindContainerForLocalSubstitute(ObjectCreationExpressionSyntax creationExpression)
protected override SyntaxNode FindSiblingNodeForLocalSubstitute(ObjectCreationExpressionSyntax creationExpression)
{
var container = creationExpression.Ancestors()
.FirstOrDefault(ancestor => ancestor.Kind() == SyntaxKind.SubBlock);
Expand All @@ -48,7 +44,7 @@ protected override SyntaxNode FindContainerForLocalSubstitute(ObjectCreationExpr
return null;
}

protected override SyntaxNode FindContainerForReadonlySubstitute(SyntaxNode creationExpression)
protected override SyntaxNode FindSiblingNodeForReadonlySubstitute(SyntaxNode creationExpression)
{
var typeBlockSyntax = creationExpression.Ancestors()
.OfType<TypeBlockSyntax>()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using NSubstitute.Analyzers.Tests.Shared.CodeFixProviders;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests
{
public abstract class CSharpCodeFixActionsVerifier : CodeFixCodeActionsVerifier
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using NSubstitute.Analyzers.Tests.Shared.CodeFixProviders;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests
{
public abstract class CSharpCodeFixVerifier : CodeFixVerifier
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using NSubstitute.Analyzers.Tests.Shared.CodeFixProviders;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests
{
public abstract class CSharpSuppressDiagnosticSettingsVerifier : SuppressDiagnosticSettingsVerifier
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using NSubstitute.Analyzers.Tests.Shared.CodeFixProviders;
using Xunit;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.ConstructorArgumentsForInterfaceCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.ConstructorArgumentsForInterfaceCodeFixProviderTests
{
public class ConstructorArgumentsForInterfaceCodeFixProviderTests : CSharpCodeFixVerifier, IConstructorArgumentsForInterfaceCodeFixVerifier
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
using NSubstitute.Analyzers.Tests.Shared.CodeFixProviders;
using Xunit;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.InternalSetupSpecificationCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.InternalSetupSpecificationCodeFixProviderTests
{
public class InternalSetupSpecificationCodeFixActionsTests : CSharpCodeFixActionsVerifier, IInternalSetupSpecificationCodeFixActionsVerifier
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using NSubstitute.Analyzers.Tests.Shared.Extensibility;
using Xunit;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.InternalSetupSpecificationCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.InternalSetupSpecificationCodeFixProviderTests
{
public abstract class InternalSetupSpecificationCodeFixProviderVerifier : CSharpSuppressDiagnosticSettingsVerifier, IInternalSetupSpecificationCodeFixProviderVerifier
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using NSubstitute.Analyzers.CSharp.DiagnosticAnalyzers;
using NSubstitute.Analyzers.Tests.Shared.Extensibility;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.InternalSetupSpecificationCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.InternalSetupSpecificationCodeFixProviderTests
{
[CombinatoryData("Received")]
public class ReceivedAsExtensionMethodTests : InternalSetupSpecificationCodeFixProviderVerifier
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using NSubstitute.Analyzers.CSharp.DiagnosticAnalyzers;
using NSubstitute.Analyzers.Tests.Shared.Extensibility;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.InternalSetupSpecificationCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.InternalSetupSpecificationCodeFixProviderTests
{
[CombinatoryData("SubstituteExtensions.Received")]
public class ReceivedAsOrdinaryMethodTests : InternalSetupSpecificationCodeFixProviderVerifier
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using NSubstitute.Analyzers.Tests.Shared.Extensibility;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.InternalSetupSpecificationCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.InternalSetupSpecificationCodeFixProviderTests
{
[CombinatoryData("Returns")]
public class ReturnsAsExtensionMethodTests : InternalSetupSpecificationCodeFixProviderVerifier
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using NSubstitute.Analyzers.Tests.Shared.Extensibility;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.InternalSetupSpecificationCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.InternalSetupSpecificationCodeFixProviderTests
{
[CombinatoryData("SubstituteExtensions.Returns")]
public class ReturnsAsOrdinaryMethodTests : InternalSetupSpecificationCodeFixProviderVerifier
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using NSubstitute.Analyzers.CSharp.DiagnosticAnalyzers;
using NSubstitute.Analyzers.Tests.Shared.Extensibility;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.InternalSetupSpecificationCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.InternalSetupSpecificationCodeFixProviderTests
{
[CombinatoryData("When")]
public class WhenAsExtensionMethodTests : InternalSetupSpecificationCodeFixProviderVerifier
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using NSubstitute.Analyzers.CSharp.DiagnosticAnalyzers;
using NSubstitute.Analyzers.Tests.Shared.Extensibility;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.InternalSetupSpecificationCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.InternalSetupSpecificationCodeFixProviderTests
{
[CombinatoryData("SubstituteExtensions.When")]
public class WhenAsOrdinaryMethodTests : InternalSetupSpecificationCodeFixProviderVerifier
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using NSubstitute.Analyzers.Tests.Shared.CodeFixProviders;
using Xunit;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.NonSubstitutableMemberArgumentMatcherSuppressDiagnosticsCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.NonSubstitutableMemberArgumentMatcherSuppressDiagnosticsCodeFixProviderTests
{
public class NonSubstitutableMemberArgumentMatcherSuppressDiagnosticsCodeFixActionsTests : CSharpCodeFixActionsVerifier, INonSubstitutableMemberArgumentMatcherSuppressDiagnosticsCodeFixActionsVerifier
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using NSubstitute.Analyzers.Tests.Shared.CodeFixProviders;
using Xunit;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.NonSubstitutableMemberArgumentMatcherSuppressDiagnosticsCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.NonSubstitutableMemberArgumentMatcherSuppressDiagnosticsCodeFixProviderTests
{
public class NonSubstitutableMemberArgumentMatcherSuppressDiagnosticsCodeFixTests
: CSharpSuppressDiagnosticSettingsVerifier, INonSubstitutableMemberArgumentMatcherSuppressDiagnosticsCodeFixVerifier
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using NSubstitute.Analyzers.Tests.Shared.CodeFixProviders;
using Xunit;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
{
public class NonSubstitutableMemberSuppressDiagnosticsCodeFixActionsTests : CSharpCodeFixActionsVerifier, INonSubstitutableMemberSuppressDiagnosticsCodeFixActionsVerifier
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using NSubstitute.Analyzers.Tests.Shared.CodeFixProviders;
using Xunit;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
{
public abstract class NonSubstitutableMemberSuppressDiagnosticsCodeFixVerifier : CSharpSuppressDiagnosticSettingsVerifier, INonSubstitutableMemberSuppressDiagnosticsCodeFixVerifier
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using NSubstitute.Analyzers.Shared;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
{
public class ReturnsAsExtensionMethodTests : NonSubstitutableMemberSuppressDiagnosticsCodeFixVerifier
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using NSubstitute.Analyzers.Shared;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
{
public class ReturnsAsExtensionMethodWithGenericTypeSpecifiedTests : NonSubstitutableMemberSuppressDiagnosticsCodeFixVerifier
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using NSubstitute.Analyzers.Shared;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
{
public class ReturnsAsOrdinaryMethodTests : NonSubstitutableMemberSuppressDiagnosticsCodeFixVerifier
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using NSubstitute.Analyzers.Shared;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
{
public class ReturnsAsOrdinaryMethodWithGenericTypeSpecifiedTests : NonSubstitutableMemberSuppressDiagnosticsCodeFixVerifier
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using NSubstitute.Analyzers.Shared;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
{
public class ReturnsForAnyArgsAsExtensionMethodTests : NonSubstitutableMemberSuppressDiagnosticsCodeFixVerifier
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using NSubstitute.Analyzers.Shared;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
{
public class ReturnsForAnyArgsAsExtensionMethodWithGenericTypeSpecifiedTests : NonSubstitutableMemberSuppressDiagnosticsCodeFixVerifier
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using NSubstitute.Analyzers.Shared;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
{
public class ReturnsForAnyArgsAsOrdinaryMethodTests : NonSubstitutableMemberSuppressDiagnosticsCodeFixVerifier
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using NSubstitute.Analyzers.Shared;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.NonSubstitutableMemberSuppressDiagnosticsCodeFixProviderTests
{
public class ReturnsForAnyArgsAsOrdinaryMethodWithGenericTypeSpecified : NonSubstitutableMemberSuppressDiagnosticsCodeFixVerifier
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using NSubstitute.Analyzers.Tests.Shared.CodeFixProviders;
using Xunit;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.PartialSubstituteUsedForUnsupportedTypeCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.PartialSubstituteUsedForUnsupportedTypeCodeFixProviderTests
{
public class PartialSubstituteUsedForUnsupportedTypeCodeFixActionsTests : CSharpCodeFixActionsVerifier, IPartialSubstituteUsedForUnsupportedTypeCodeFixActionsVerifier
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using NSubstitute.Analyzers.Tests.Shared.CodeFixProviders;
using Xunit;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.PartialSubstituteUsedForUnsupportedTypeCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.PartialSubstituteUsedForUnsupportedTypeCodeFixProviderTests
{
public class PartialSubstituteUsedForUnsupportedTypeCodeFixProviderTests : CSharpCodeFixVerifier, IForPartsOfUsedForUnsupportedTypeCodeFixVerifier
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using NSubstitute.Analyzers.Tests.Shared.CodeFixProviders;
using Xunit;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.ReEntrantSetupCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.ReEntrantSetupCodeFixProviderTests
{
public class ReEntrantSetupCodeFixActionsTests : CSharpCodeFixActionsVerifier, IReEntrantSetupCodeFixActionsVerifier
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using NSubstitute.Analyzers.Tests.Shared.CodeFixProviders;
using Xunit;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.ReEntrantSetupCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.ReEntrantSetupCodeFixProviderTests
{
public abstract class ReEntrantSetupCodeFixVerifier : CSharpCodeFixVerifier, IReEntrantSetupCodeFixProviderVerifier
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Threading.Tasks;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.ReEntrantSetupCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.ReEntrantSetupCodeFixProviderTests
{
public class ReturnsAsExtensionMethodTests : ReEntrantSetupCodeFixVerifier
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Threading.Tasks;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.ReEntrantSetupCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.ReEntrantSetupCodeFixProviderTests
{
public class ReturnsAsOrdinaryMethodTests : ReEntrantSetupCodeFixVerifier
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using Xunit;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.SubstituteForInternalMemberCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.SubstituteForInternalMemberCodeFixProviderTests
{
public class ForAsGenericMethodTests : SubstituteForInternalMemberCodeFixVerifier
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using Xunit;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.SubstituteForInternalMemberCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.SubstituteForInternalMemberCodeFixProviderTests
{
public class ForAsNonGenericMethodTests : SubstituteForInternalMemberCodeFixVerifier
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using Xunit;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.SubstituteForInternalMemberCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.SubstituteForInternalMemberCodeFixProviderTests
{
public class ForPartsOfMethodTests : SubstituteForInternalMemberCodeFixVerifier
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Threading.Tasks;
using Xunit;

namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProvidersTests.SubstituteForInternalMemberCodeFixProviderTests
namespace NSubstitute.Analyzers.Tests.CSharp.CodeFixProviderTests.SubstituteForInternalMemberCodeFixProviderTests
{
public class SubstituteFactoryCreateMethodTests : SubstituteForInternalMemberCodeFixVerifier
{
Expand Down
Loading

0 comments on commit 0c625e6

Please sign in to comment.