├── .gitattributes ├── .gitignore ├── .idea ├── .idea.ReSharperPlugin.FluentAssertions │ └── .idea │ │ └── runConfigurations │ │ ├── Rider__Frontend__Unix_.xml │ │ ├── Rider__Frontend__Windows_.xml │ │ ├── Rider__Unix_.xml │ │ ├── Rider__Windows_.xml │ │ ├── VisualStudio.xml │ │ ├── rdgen__Unix_.xml │ │ └── rdgen__Windows_.xml └── runConfigurations │ ├── Rider.xml │ └── rdgen.xml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── ReSharperPlugin.FluentAssertions.sln ├── ReSharperPlugin.FluentAssertions.sln.DotSettings ├── dependencies.json ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── protocol └── build.gradle.kts ├── publishPlugin.ps1 ├── runVisualStudio.ps1 ├── settings.gradle.kts ├── settings.ps1 ├── src ├── dotnet │ ├── Directory.Build.props │ ├── Plugin.props │ ├── ReSharperPlugin.FluentAssertions.Tests │ │ ├── FormatMessageParamsTests.cs │ │ ├── NUnitAssertMigrationHighlightingTests.cs │ │ ├── NUnitAssertMigrationQuickFixTests.cs │ │ ├── ReSharperPlugin.FluentAssertions.Tests.csproj │ │ ├── TestEnvironment.cs │ │ ├── TestHelper.cs │ │ └── test │ │ │ └── data │ │ │ ├── NUnitAssertMigrationHighlightingTests │ │ │ ├── NegativeCase.cs │ │ │ ├── NegativeCase.cs.gold │ │ │ ├── PositiveCaseFalse.cs │ │ │ ├── PositiveCaseFalse.cs.gold │ │ │ ├── PositiveCaseIsFalse.cs │ │ │ ├── PositiveCaseIsFalse.cs.gold │ │ │ ├── PositiveCaseIsNotNull.cs │ │ │ ├── PositiveCaseIsNotNull.cs.gold │ │ │ ├── PositiveCaseIsNull.cs │ │ │ ├── PositiveCaseIsNull.cs.gold │ │ │ ├── PositiveCaseIsTrue.cs │ │ │ ├── PositiveCaseIsTrue.cs.gold │ │ │ ├── PositiveCaseNotNull.cs │ │ │ ├── PositiveCaseNotNull.cs.gold │ │ │ ├── PositiveCaseNull.cs │ │ │ ├── PositiveCaseNull.cs.gold │ │ │ ├── PositiveCaseTrue.cs │ │ │ ├── PositiveCaseTrue.cs.gold │ │ │ ├── PositiveCaseWithoutReferences.cs │ │ │ └── PositiveCaseWithoutReferences.cs.gold │ │ │ ├── NUnitAssertMigrationQuickFixTests │ │ │ ├── AreEqual-WithFormattedMessage.cs │ │ │ ├── AreEqual-WithFormattedMessage.cs.gold │ │ │ ├── AreEqual-WithSimpleMessage.cs │ │ │ ├── AreEqual-WithSimpleMessage.cs.gold │ │ │ ├── AreEqual.cs │ │ │ ├── AreEqual.cs.gold │ │ │ ├── False.cs │ │ │ ├── False.cs.gold │ │ │ ├── IsFalse.cs │ │ │ ├── IsFalse.cs.gold │ │ │ ├── IsNotNull-ClassBug.cs │ │ │ ├── IsNotNull-ClassBug.cs.gold │ │ │ ├── IsNotNull-NullableTypeBug.cs │ │ │ ├── IsNotNull-NullableTypeBug.cs.gold │ │ │ ├── IsNotNull-WithFormattedMessage.cs │ │ │ ├── IsNotNull-WithFormattedMessage.cs.gold │ │ │ ├── IsNotNull-WithSimpleMessage.cs │ │ │ ├── IsNotNull-WithSimpleMessage.cs.gold │ │ │ ├── IsNotNull.cs │ │ │ ├── IsNotNull.cs.gold │ │ │ ├── IsNull-WithFormattedMessage.cs │ │ │ ├── IsNull-WithFormattedMessage.cs.gold │ │ │ ├── IsNull-WithSimpleMessage.cs │ │ │ ├── IsNull-WithSimpleMessage.cs.gold │ │ │ ├── IsNull.cs │ │ │ ├── IsNull.cs.gold │ │ │ ├── IsTrue.cs │ │ │ ├── IsTrue.cs.gold │ │ │ ├── LessOrEqual-WithFormattedMessage.cs │ │ │ ├── LessOrEqual-WithFormattedMessage.cs.gold │ │ │ ├── LessOrEqual-WithSimpleMessage.cs │ │ │ ├── LessOrEqual-WithSimpleMessage.cs.gold │ │ │ ├── LessOrEqual.cs │ │ │ ├── LessOrEqual.cs.gold │ │ │ ├── NotNull-WithFormattedMessage.cs │ │ │ ├── NotNull-WithFormattedMessage.cs.gold │ │ │ ├── NotNull-WithSimpleMessage.cs │ │ │ ├── NotNull-WithSimpleMessage.cs.gold │ │ │ ├── NotNull.cs │ │ │ ├── NotNull.cs.gold │ │ │ ├── NotZero-WithFormattedMessage.cs │ │ │ ├── NotZero-WithFormattedMessage.cs.gold │ │ │ ├── NotZero-WithSimpleMessage.cs │ │ │ ├── NotZero-WithSimpleMessage.cs.gold │ │ │ ├── NotZero.cs │ │ │ ├── NotZero.cs.gold │ │ │ ├── Null-WithFormattedMessage.cs │ │ │ ├── Null-WithFormattedMessage.cs.gold │ │ │ ├── Null-WithSimpleMessage.cs │ │ │ ├── Null-WithSimpleMessage.cs.gold │ │ │ ├── Null.cs │ │ │ ├── Null.cs.gold │ │ │ ├── True.cs │ │ │ └── True.cs.gold │ │ │ └── nuget.config │ └── ReSharperPlugin.FluentAssertions │ │ ├── Analyzers │ │ └── NUnitAssertMigrationAnalyzer.cs │ │ ├── FluentAssertionsTemplateSettings.cs │ │ ├── Helpers │ │ ├── ExpressionFormatParametersExtensions.cs │ │ └── NUnit │ │ │ ├── AssertAreEqualMigrationService.cs │ │ │ ├── AssertBeFalseMigrationService.cs │ │ │ ├── AssertBeNullMigrationService.cs │ │ │ ├── AssertBeTrueMigrationService.cs │ │ │ ├── AssertLessOrEqualMigrationService.cs │ │ │ ├── AssertNotBeNullMigrationService.cs │ │ │ ├── AssertNotZeroMigrationService.cs │ │ │ └── NUnitAssertMigrationServiceBase.cs │ │ ├── Highlightings │ │ └── NUnitAssertMigrationHighlighting.cs │ │ ├── IFluentAssertionsPluginZone.cs │ │ ├── Psi │ │ ├── FluentAssertionsPredefinedType.cs │ │ ├── FluentAssertionsPredefinedTypesExtensions.cs │ │ ├── NUnit │ │ │ ├── NUnitPredefinedType.cs │ │ │ ├── NUnitPredefinedTypeCache.cs │ │ │ └── NUnitPredefinedTypeExtensions.cs │ │ └── PsiExtensions.cs │ │ ├── QuickFixes │ │ └── NUnitAssertMigrationQuickFix.cs │ │ ├── ReSharperPlugin.FluentAssertions.Rider.csproj │ │ ├── ReSharperPlugin.FluentAssertions.csproj │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── ResultPostfix.cs │ │ ├── Templates.DotSettings │ │ ├── TesteePostfix.cs │ │ └── ZoneMarker.cs └── rider │ └── main │ └── resources │ └── META-INF │ ├── plugin.xml │ └── pluginIcon.svg └── tools ├── nuget.exe └── vswhere.exe /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.ReSharperPlugin.FluentAssertions/.idea/runConfigurations/Rider__Frontend__Unix_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/.idea/.idea.ReSharperPlugin.FluentAssertions/.idea/runConfigurations/Rider__Frontend__Unix_.xml -------------------------------------------------------------------------------- /.idea/.idea.ReSharperPlugin.FluentAssertions/.idea/runConfigurations/Rider__Frontend__Windows_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/.idea/.idea.ReSharperPlugin.FluentAssertions/.idea/runConfigurations/Rider__Frontend__Windows_.xml -------------------------------------------------------------------------------- /.idea/.idea.ReSharperPlugin.FluentAssertions/.idea/runConfigurations/Rider__Unix_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/.idea/.idea.ReSharperPlugin.FluentAssertions/.idea/runConfigurations/Rider__Unix_.xml -------------------------------------------------------------------------------- /.idea/.idea.ReSharperPlugin.FluentAssertions/.idea/runConfigurations/Rider__Windows_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/.idea/.idea.ReSharperPlugin.FluentAssertions/.idea/runConfigurations/Rider__Windows_.xml -------------------------------------------------------------------------------- /.idea/.idea.ReSharperPlugin.FluentAssertions/.idea/runConfigurations/VisualStudio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/.idea/.idea.ReSharperPlugin.FluentAssertions/.idea/runConfigurations/VisualStudio.xml -------------------------------------------------------------------------------- /.idea/.idea.ReSharperPlugin.FluentAssertions/.idea/runConfigurations/rdgen__Unix_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/.idea/.idea.ReSharperPlugin.FluentAssertions/.idea/runConfigurations/rdgen__Unix_.xml -------------------------------------------------------------------------------- /.idea/.idea.ReSharperPlugin.FluentAssertions/.idea/runConfigurations/rdgen__Windows_.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/.idea/.idea.ReSharperPlugin.FluentAssertions/.idea/runConfigurations/rdgen__Windows_.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/Rider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/.idea/runConfigurations/Rider.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/rdgen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/.idea/runConfigurations/rdgen.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/README.md -------------------------------------------------------------------------------- /ReSharperPlugin.FluentAssertions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/ReSharperPlugin.FluentAssertions.sln -------------------------------------------------------------------------------- /ReSharperPlugin.FluentAssertions.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/ReSharperPlugin.FluentAssertions.sln.DotSettings -------------------------------------------------------------------------------- /dependencies.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/gradlew.bat -------------------------------------------------------------------------------- /protocol/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/protocol/build.gradle.kts -------------------------------------------------------------------------------- /publishPlugin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/publishPlugin.ps1 -------------------------------------------------------------------------------- /runVisualStudio.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/runVisualStudio.ps1 -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /settings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/settings.ps1 -------------------------------------------------------------------------------- /src/dotnet/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/Directory.Build.props -------------------------------------------------------------------------------- /src/dotnet/Plugin.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/Plugin.props -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/FormatMessageParamsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/FormatMessageParamsTests.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/NUnitAssertMigrationHighlightingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/NUnitAssertMigrationHighlightingTests.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/NUnitAssertMigrationQuickFixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/NUnitAssertMigrationQuickFixTests.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/ReSharperPlugin.FluentAssertions.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/ReSharperPlugin.FluentAssertions.Tests.csproj -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/TestEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/TestEnvironment.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/TestHelper.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/NegativeCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/NegativeCase.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/NegativeCase.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/NegativeCase.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseFalse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseFalse.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseFalse.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseFalse.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseIsFalse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseIsFalse.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseIsFalse.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseIsFalse.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseIsNotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseIsNotNull.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseIsNotNull.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseIsNotNull.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseIsNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseIsNull.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseIsNull.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseIsNull.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseIsTrue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseIsTrue.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseIsTrue.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseIsTrue.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseNotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseNotNull.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseNotNull.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseNotNull.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseNull.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseNull.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseNull.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseTrue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseTrue.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseTrue.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseTrue.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseWithoutReferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseWithoutReferences.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseWithoutReferences.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationHighlightingTests/PositiveCaseWithoutReferences.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/AreEqual-WithFormattedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/AreEqual-WithFormattedMessage.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/AreEqual-WithFormattedMessage.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/AreEqual-WithFormattedMessage.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/AreEqual-WithSimpleMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/AreEqual-WithSimpleMessage.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/AreEqual-WithSimpleMessage.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/AreEqual-WithSimpleMessage.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/AreEqual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/AreEqual.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/AreEqual.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/AreEqual.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/False.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/False.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/False.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/False.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsFalse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsFalse.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsFalse.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsFalse.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull-ClassBug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull-ClassBug.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull-ClassBug.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull-ClassBug.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull-NullableTypeBug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull-NullableTypeBug.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull-NullableTypeBug.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull-NullableTypeBug.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull-WithFormattedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull-WithFormattedMessage.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull-WithFormattedMessage.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull-WithFormattedMessage.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull-WithSimpleMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull-WithSimpleMessage.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull-WithSimpleMessage.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull-WithSimpleMessage.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNotNull.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNull-WithFormattedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNull-WithFormattedMessage.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNull-WithFormattedMessage.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNull-WithFormattedMessage.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNull-WithSimpleMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNull-WithSimpleMessage.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNull-WithSimpleMessage.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNull-WithSimpleMessage.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNull.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNull.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsNull.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsTrue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsTrue.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsTrue.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/IsTrue.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/LessOrEqual-WithFormattedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/LessOrEqual-WithFormattedMessage.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/LessOrEqual-WithFormattedMessage.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/LessOrEqual-WithFormattedMessage.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/LessOrEqual-WithSimpleMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/LessOrEqual-WithSimpleMessage.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/LessOrEqual-WithSimpleMessage.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/LessOrEqual-WithSimpleMessage.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/LessOrEqual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/LessOrEqual.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/LessOrEqual.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/LessOrEqual.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotNull-WithFormattedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotNull-WithFormattedMessage.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotNull-WithFormattedMessage.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotNull-WithFormattedMessage.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotNull-WithSimpleMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotNull-WithSimpleMessage.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotNull-WithSimpleMessage.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotNull-WithSimpleMessage.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotNull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotNull.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotNull.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotNull.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotZero-WithFormattedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotZero-WithFormattedMessage.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotZero-WithFormattedMessage.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotZero-WithFormattedMessage.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotZero-WithSimpleMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotZero-WithSimpleMessage.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotZero-WithSimpleMessage.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotZero-WithSimpleMessage.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotZero.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotZero.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotZero.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/NotZero.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/Null-WithFormattedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/Null-WithFormattedMessage.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/Null-WithFormattedMessage.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/Null-WithFormattedMessage.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/Null-WithSimpleMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/Null-WithSimpleMessage.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/Null-WithSimpleMessage.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/Null-WithSimpleMessage.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/Null.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/Null.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/Null.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/Null.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/True.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/True.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/True.cs.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/NUnitAssertMigrationQuickFixTests/True.cs.gold -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions.Tests/test/data/nuget.config -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Analyzers/NUnitAssertMigrationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Analyzers/NUnitAssertMigrationAnalyzer.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/FluentAssertionsTemplateSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/FluentAssertionsTemplateSettings.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Helpers/ExpressionFormatParametersExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Helpers/ExpressionFormatParametersExtensions.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Helpers/NUnit/AssertAreEqualMigrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Helpers/NUnit/AssertAreEqualMigrationService.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Helpers/NUnit/AssertBeFalseMigrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Helpers/NUnit/AssertBeFalseMigrationService.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Helpers/NUnit/AssertBeNullMigrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Helpers/NUnit/AssertBeNullMigrationService.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Helpers/NUnit/AssertBeTrueMigrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Helpers/NUnit/AssertBeTrueMigrationService.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Helpers/NUnit/AssertLessOrEqualMigrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Helpers/NUnit/AssertLessOrEqualMigrationService.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Helpers/NUnit/AssertNotBeNullMigrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Helpers/NUnit/AssertNotBeNullMigrationService.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Helpers/NUnit/AssertNotZeroMigrationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Helpers/NUnit/AssertNotZeroMigrationService.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Helpers/NUnit/NUnitAssertMigrationServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Helpers/NUnit/NUnitAssertMigrationServiceBase.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Highlightings/NUnitAssertMigrationHighlighting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Highlightings/NUnitAssertMigrationHighlighting.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/IFluentAssertionsPluginZone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/IFluentAssertionsPluginZone.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Psi/FluentAssertionsPredefinedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Psi/FluentAssertionsPredefinedType.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Psi/FluentAssertionsPredefinedTypesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Psi/FluentAssertionsPredefinedTypesExtensions.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Psi/NUnit/NUnitPredefinedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Psi/NUnit/NUnitPredefinedType.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Psi/NUnit/NUnitPredefinedTypeCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Psi/NUnit/NUnitPredefinedTypeCache.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Psi/NUnit/NUnitPredefinedTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Psi/NUnit/NUnitPredefinedTypeExtensions.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Psi/PsiExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Psi/PsiExtensions.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/QuickFixes/NUnitAssertMigrationQuickFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/QuickFixes/NUnitAssertMigrationQuickFix.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/ReSharperPlugin.FluentAssertions.Rider.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/ReSharperPlugin.FluentAssertions.Rider.csproj -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/ReSharperPlugin.FluentAssertions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/ReSharperPlugin.FluentAssertions.csproj -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Resources.Designer.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Resources.resx -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/ResultPostfix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/ResultPostfix.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/Templates.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/Templates.DotSettings -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/TesteePostfix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/TesteePostfix.cs -------------------------------------------------------------------------------- /src/dotnet/ReSharperPlugin.FluentAssertions/ZoneMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/dotnet/ReSharperPlugin.FluentAssertions/ZoneMarker.cs -------------------------------------------------------------------------------- /src/rider/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/rider/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/rider/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/src/rider/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /tools/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/tools/nuget.exe -------------------------------------------------------------------------------- /tools/vswhere.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matkoch/resharper-fluentassertions/HEAD/tools/vswhere.exe --------------------------------------------------------------------------------