├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── benchmark.yml │ ├── ci.yml │ ├── integration.yml │ └── release.yml ├── .gitignore ├── FluentAssertions.Analyzers.sln ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── assets ├── FluentAssertions.png ├── demo.gif └── images │ └── fluent_assertions_analyzers_large_horizontal.svg ├── docs ├── FluentAssertionsAnalyzer.md ├── MsTestAnalyzer.md ├── Nunit3Analyzer.md ├── Nunit4Analyzer.md └── XunitAnalyzer.md ├── scripts ├── generate-docs.ps1 └── run-docs-tests.ps1 └── src ├── Directory.Packages.props ├── FluentAssertions.Analyzers.BenchmarkTests ├── FluentAssertions.Analyzers.BenchmarkTests.csproj ├── FluentAssertionsBenchmarks.cs └── Program.cs ├── FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit3 ├── ExpectedAssertionExceptionAttribute.cs ├── FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit3.csproj ├── Nunit3AnalyzerTests.cs └── Program.cs ├── FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit4 ├── ExpectedAssertionExceptionAttribute.cs ├── FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit4.csproj ├── Nunit4AnalyzerTests.cs └── Program.cs ├── FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Xunit ├── ExpectedAssertionExceptionAttribute.cs ├── FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Xunit.csproj ├── Program.cs └── XunitAnalyzerTests.cs ├── FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs ├── FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.csproj ├── FluentAssertionsAnalyzerTests.cs ├── MsTestAnalyzerTests.cs └── Program.cs ├── FluentAssertions.Analyzers.FluentAssertionAnalyzerDocsGenerator ├── DocsGenerator.cs ├── DocsVerifier.cs ├── FluentAssertionAnalyzerDocsUtils.cs ├── FluentAssertions.Analyzers.FluentAssertionAnalyzerDocsGenerator.csproj └── ProgramUtils.cs ├── FluentAssertions.Analyzers.TestUtils ├── CodeAnalyzersUtils.cs ├── CsProjectArguments.cs ├── CsProjectGenerator.cs ├── FluentAssertions.Analyzers.TestUtils.csproj ├── GenerateCode.cs ├── PackageReference.cs ├── SolutionExtensions.cs ├── TargetFramework.cs └── TestAnalyzerConfigOptionsProvider.cs ├── FluentAssertions.Analyzers.Tests ├── CodeFixVerifierArguments.cs ├── DiagnosticResult.cs ├── DiagnosticVerifier.cs ├── DiagnosticVerifierArguments.cs ├── FluentAssertions.Analyzers.Tests.csproj ├── TestAttributes.cs ├── TestConfiguration.cs └── Tips │ ├── AsyncVoidTests.cs │ ├── CollectionTests.cs │ ├── DictionaryTests.cs │ ├── ExceptionsTests.cs │ ├── FluentAssertionsTests.cs │ ├── MsTestTests.cs │ ├── NullConditionalAssertionTests.cs │ ├── NumericTests.cs │ ├── NunitTests.cs │ ├── SanityTests.cs │ ├── ShouldEqualsTests.cs │ ├── StringTests.cs │ └── XunitTests.cs └── FluentAssertions.Analyzers ├── AnalyzerReleases.Shipped.md ├── AnalyzerReleases.Unshipped.md ├── Constants.cs ├── FluentAssertions.Analyzers.csproj ├── Tips ├── AssertAnalyzer.cs ├── AsyncVoid.cs ├── CodeFixProviderBase.cs ├── DiagnosticMetadata.cs ├── DocumentEditorUtils.cs ├── Editing │ ├── CreateEquivalencyAssertionOptionsLambda.cs │ ├── EditAction.cs │ ├── IEditAction.cs │ ├── SkipInvocationNodeAction.cs │ ├── SkipMemberAccessNodeAction.cs │ ├── SubjectShouldAssertionAction.cs │ └── SubjectShouldGenericAssertionAction.cs ├── FluentAssertionsAnalyzer.Utils.cs ├── FluentAssertionsAnalyzer.cs ├── FluentAssertionsCodeFixProvider.EditorUtils.cs ├── FluentAssertionsCodeFixProvider.Exceptions.cs ├── FluentAssertionsCodeFixProvider.cs ├── FluentAssertionsEditAction.cs ├── FluentChainedAssertionEditAction.cs ├── MsTestCodeFixProvider.cs ├── NunitCodeFixProvider.cs ├── TestingFrameworkCodeFixProvider.cs └── XunitCodeFixProvider.cs ├── Utilities ├── OperartionExtensions.cs └── TypesExtensions.cs └── tools ├── install.ps1 └── uninstall.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/.github/workflows/integration.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/.gitignore -------------------------------------------------------------------------------- /FluentAssertions.Analyzers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/FluentAssertions.Analyzers.sln -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/README.md -------------------------------------------------------------------------------- /assets/FluentAssertions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/assets/FluentAssertions.png -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /assets/images/fluent_assertions_analyzers_large_horizontal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/assets/images/fluent_assertions_analyzers_large_horizontal.svg -------------------------------------------------------------------------------- /docs/FluentAssertionsAnalyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/docs/FluentAssertionsAnalyzer.md -------------------------------------------------------------------------------- /docs/MsTestAnalyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/docs/MsTestAnalyzer.md -------------------------------------------------------------------------------- /docs/Nunit3Analyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/docs/Nunit3Analyzer.md -------------------------------------------------------------------------------- /docs/Nunit4Analyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/docs/Nunit4Analyzer.md -------------------------------------------------------------------------------- /docs/XunitAnalyzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/docs/XunitAnalyzer.md -------------------------------------------------------------------------------- /scripts/generate-docs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/scripts/generate-docs.ps1 -------------------------------------------------------------------------------- /scripts/run-docs-tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/scripts/run-docs-tests.ps1 -------------------------------------------------------------------------------- /src/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/Directory.Packages.props -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.BenchmarkTests/FluentAssertions.Analyzers.BenchmarkTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.BenchmarkTests/FluentAssertions.Analyzers.BenchmarkTests.csproj -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.BenchmarkTests/FluentAssertionsBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.BenchmarkTests/FluentAssertionsBenchmarks.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.BenchmarkTests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.BenchmarkTests/Program.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit3/ExpectedAssertionExceptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit3/ExpectedAssertionExceptionAttribute.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit3/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit3/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit3.csproj -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit3/Nunit3AnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit3/Nunit3AnalyzerTests.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit3/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit3/Program.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit4/ExpectedAssertionExceptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit4/ExpectedAssertionExceptionAttribute.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit4/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit4/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit4.csproj -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit4/Nunit4AnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit4/Nunit4AnalyzerTests.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit4/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Nunit4/Program.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Xunit/ExpectedAssertionExceptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Xunit/ExpectedAssertionExceptionAttribute.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Xunit/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Xunit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Xunit/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Xunit.csproj -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Xunit/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Xunit/Program.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Xunit/XunitAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.Xunit/XunitAnalyzerTests.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs.csproj -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs/FluentAssertionsAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs/FluentAssertionsAnalyzerTests.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs/MsTestAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs/MsTestAnalyzerTests.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocs/Program.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocsGenerator/DocsGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocsGenerator/DocsGenerator.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocsGenerator/DocsVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocsGenerator/DocsVerifier.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocsGenerator/FluentAssertionAnalyzerDocsUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocsGenerator/FluentAssertionAnalyzerDocsUtils.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocsGenerator/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocsGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocsGenerator/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocsGenerator.csproj -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocsGenerator/ProgramUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.FluentAssertionAnalyzerDocsGenerator/ProgramUtils.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.TestUtils/CodeAnalyzersUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.TestUtils/CodeAnalyzersUtils.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.TestUtils/CsProjectArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.TestUtils/CsProjectArguments.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.TestUtils/CsProjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.TestUtils/CsProjectGenerator.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.TestUtils/FluentAssertions.Analyzers.TestUtils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.TestUtils/FluentAssertions.Analyzers.TestUtils.csproj -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.TestUtils/GenerateCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.TestUtils/GenerateCode.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.TestUtils/PackageReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.TestUtils/PackageReference.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.TestUtils/SolutionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.TestUtils/SolutionExtensions.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.TestUtils/TargetFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.TestUtils/TargetFramework.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.TestUtils/TestAnalyzerConfigOptionsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.TestUtils/TestAnalyzerConfigOptionsProvider.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/CodeFixVerifierArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/CodeFixVerifierArguments.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/DiagnosticResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/DiagnosticResult.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/DiagnosticVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/DiagnosticVerifier.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/DiagnosticVerifierArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/DiagnosticVerifierArguments.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/FluentAssertions.Analyzers.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/FluentAssertions.Analyzers.Tests.csproj -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/TestAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/TestAttributes.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/TestConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/TestConfiguration.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/Tips/AsyncVoidTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/Tips/AsyncVoidTests.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/Tips/CollectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/Tips/CollectionTests.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/Tips/DictionaryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/Tips/DictionaryTests.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/Tips/ExceptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/Tips/ExceptionsTests.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/Tips/FluentAssertionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/Tips/FluentAssertionsTests.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/Tips/MsTestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/Tips/MsTestTests.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/Tips/NullConditionalAssertionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/Tips/NullConditionalAssertionTests.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/Tips/NumericTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/Tips/NumericTests.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/Tips/NunitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/Tips/NunitTests.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/Tips/SanityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/Tips/SanityTests.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/Tips/ShouldEqualsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/Tips/ShouldEqualsTests.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/Tips/StringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/Tips/StringTests.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers.Tests/Tips/XunitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers.Tests/Tips/XunitTests.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/AnalyzerReleases.Shipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/AnalyzerReleases.Shipped.md -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/AnalyzerReleases.Unshipped.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/AnalyzerReleases.Unshipped.md -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Constants.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/FluentAssertions.Analyzers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/FluentAssertions.Analyzers.csproj -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/AssertAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/AssertAnalyzer.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/AsyncVoid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/AsyncVoid.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/CodeFixProviderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/CodeFixProviderBase.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/DiagnosticMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/DiagnosticMetadata.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/DocumentEditorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/DocumentEditorUtils.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/Editing/CreateEquivalencyAssertionOptionsLambda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/Editing/CreateEquivalencyAssertionOptionsLambda.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/Editing/EditAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/Editing/EditAction.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/Editing/IEditAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/Editing/IEditAction.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/Editing/SkipInvocationNodeAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/Editing/SkipInvocationNodeAction.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/Editing/SkipMemberAccessNodeAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/Editing/SkipMemberAccessNodeAction.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/Editing/SubjectShouldAssertionAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/Editing/SubjectShouldAssertionAction.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/Editing/SubjectShouldGenericAssertionAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/Editing/SubjectShouldGenericAssertionAction.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/FluentAssertionsAnalyzer.Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/FluentAssertionsAnalyzer.Utils.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/FluentAssertionsAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/FluentAssertionsAnalyzer.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/FluentAssertionsCodeFixProvider.EditorUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/FluentAssertionsCodeFixProvider.EditorUtils.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/FluentAssertionsCodeFixProvider.Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/FluentAssertionsCodeFixProvider.Exceptions.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/FluentAssertionsCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/FluentAssertionsCodeFixProvider.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/FluentAssertionsEditAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/FluentAssertionsEditAction.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/FluentChainedAssertionEditAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/FluentChainedAssertionEditAction.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/MsTestCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/MsTestCodeFixProvider.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/NunitCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/NunitCodeFixProvider.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/TestingFrameworkCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/TestingFrameworkCodeFixProvider.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Tips/XunitCodeFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Tips/XunitCodeFixProvider.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Utilities/OperartionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Utilities/OperartionExtensions.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/Utilities/TypesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/Utilities/TypesExtensions.cs -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/tools/install.ps1 -------------------------------------------------------------------------------- /src/FluentAssertions.Analyzers/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fluentassertions/fluentassertions.analyzers/HEAD/src/FluentAssertions.Analyzers/tools/uninstall.ps1 --------------------------------------------------------------------------------