├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── appveyor.yml ├── dotCover.xml ├── img └── howto_anim_exceptions.gif ├── nunit.migrator.sln ├── nunit.migrator.tests ├── Assertion │ ├── AssertionAnalyzerTests.cs │ └── AssertionFixProviderTests.cs ├── Attributes │ ├── ChangedSemanticAnalyzerTests.cs │ ├── ChangedSemanticFixProviderTests.cs │ ├── IgnoreReasonAnalyzerTests.cs │ ├── IgnoreReasonFixProviderTests.cs │ ├── NoLongerSupportedAttributesAnalyzerTests.cs │ ├── StaticSourceAnalyzerTests.cs │ ├── StaticSourceFixProviderTests.cs │ ├── TrivialAttributeArgumentReplaceAnalyzerTests.cs │ ├── TrivialAttributeArgumentReplaceFixProviderTests.cs │ ├── TrivialAttributeReplaceAnalyzerTests.cs │ └── TrivialAttributeReplaceFixProviderTests.cs ├── CatchAllSymbolAnalyzerTests.cs ├── Constraint │ ├── ConstraintAnalyzerTests.cs │ └── ConstraintFixProviderTests.cs ├── ExceptionExpectancy │ ├── ExceptionExpectancyAnalyzerTests.cs │ ├── ExceptionExpectancyFixProviderTests.cs │ ├── ExpectedExceptionOnlyFixture.cs │ ├── MixedExpectedExceptionAndTestCasesFixture.cs │ ├── TestCaseOnlyFixture.cs │ └── TriviaFixture.cs ├── Helpers │ ├── CodeFixVerifier.Helper.cs │ ├── CodeFixVerifier.cs │ ├── DiagnosticResult.cs │ ├── DiagnosticVerifier.Helper.cs │ └── DiagnosticVerifier.cs └── nunit.migrator.tests.csproj ├── nunit.migrator.vsix ├── LICENSE.txt ├── mw-logo.png ├── nunit.migrator.vsix.csproj └── source.extension.vsixmanifest ├── nunit.migrator ├── AssertionsAndConstraints │ ├── AssertionMigration.cs │ ├── ConstraintMigration.cs │ ├── ICompilationStartAnalyzing.cs │ ├── IFixer.cs │ ├── MemberAccessBasedAnalyzer.cs │ ├── MemberAccessBasedFixProvider.cs │ ├── MemberAccessBasedMigration.cs │ ├── MemberAccessCodeAction.cs │ └── MemberAccessMigrationTable.cs ├── Attributes │ ├── AttributeAnalyzer.cs │ ├── ChangedSemanticAnalyzer.cs │ ├── ChangedSemanticFixProvider.cs │ ├── IgnoreReasonAnalyzer.cs │ ├── IgnoreReasonFixProvider.cs │ ├── NoLongerSupportedAttributesAnalyzer.cs │ ├── ReplaceDeprecatedAttribute.cs │ ├── StaticSourceAnalyzer.cs │ ├── StaticSourceAttribute.cs │ ├── StaticSourceFixProvider.cs │ ├── TestIgnoringModel.cs │ ├── TrivialAttributeArgumentReplaceAnalyzer.cs │ ├── TrivialAttributeArgumentReplaceFixProvider.cs │ ├── TrivialAttributeReplaceAnalyzer.cs │ └── TrivialAttributeReplaceFixProvider.cs ├── CatchAllSymbolAnalyzer.cs ├── Descriptors.cs ├── ExceptionExpectancy │ ├── CodeActions │ │ ├── AssertExceptionBlockDecorator.cs │ │ ├── AssertExceptionMessageDecorator.cs │ │ ├── AssertHandlerMethodDecorator.cs │ │ ├── AssertThrowsExceptionCreator.cs │ │ ├── AssertUserMessageDecorator.cs │ │ ├── AssignAssertThrowsToLocalVariableDecorator.cs │ │ ├── ExceptionExpectancyCodeAction.cs │ │ └── IAssertExceptionBlockCreator.cs │ ├── ExceptionExpectancyAnalyzer.cs │ ├── ExceptionExpectancyFixProvider.cs │ └── Model │ │ ├── ExceptionExpectancyAtAttributeLevel.cs │ │ ├── ExceptionExpectancyMethodModel.cs │ │ ├── ExpectedExceptionAttribute.cs │ │ ├── TestCaseExceptionEquivalenceCluster.cs │ │ └── TestCaseExpectingExceptionAttribute.cs ├── Helpers │ ├── Formatting.cs │ ├── NUnitFramework.cs │ └── SyntaxHelper.cs ├── Texts.cs ├── nunit.migrator.csproj └── tools │ ├── install.ps1 │ └── uninstall.ps1 ├── set-versions.ps1 └── sonar.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/appveyor.yml -------------------------------------------------------------------------------- /dotCover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/dotCover.xml -------------------------------------------------------------------------------- /img/howto_anim_exceptions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/img/howto_anim_exceptions.gif -------------------------------------------------------------------------------- /nunit.migrator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.sln -------------------------------------------------------------------------------- /nunit.migrator.tests/Assertion/AssertionAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Assertion/AssertionAnalyzerTests.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Assertion/AssertionFixProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Assertion/AssertionFixProviderTests.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Attributes/ChangedSemanticAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Attributes/ChangedSemanticAnalyzerTests.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Attributes/ChangedSemanticFixProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Attributes/ChangedSemanticFixProviderTests.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Attributes/IgnoreReasonAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Attributes/IgnoreReasonAnalyzerTests.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Attributes/IgnoreReasonFixProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Attributes/IgnoreReasonFixProviderTests.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Attributes/NoLongerSupportedAttributesAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Attributes/NoLongerSupportedAttributesAnalyzerTests.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Attributes/StaticSourceAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Attributes/StaticSourceAnalyzerTests.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Attributes/StaticSourceFixProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Attributes/StaticSourceFixProviderTests.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Attributes/TrivialAttributeArgumentReplaceAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Attributes/TrivialAttributeArgumentReplaceAnalyzerTests.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Attributes/TrivialAttributeArgumentReplaceFixProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Attributes/TrivialAttributeArgumentReplaceFixProviderTests.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Attributes/TrivialAttributeReplaceAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Attributes/TrivialAttributeReplaceAnalyzerTests.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Attributes/TrivialAttributeReplaceFixProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Attributes/TrivialAttributeReplaceFixProviderTests.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/CatchAllSymbolAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/CatchAllSymbolAnalyzerTests.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Constraint/ConstraintAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Constraint/ConstraintAnalyzerTests.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Constraint/ConstraintFixProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Constraint/ConstraintFixProviderTests.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/ExceptionExpectancy/ExceptionExpectancyAnalyzerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/ExceptionExpectancy/ExceptionExpectancyAnalyzerTests.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/ExceptionExpectancy/ExceptionExpectancyFixProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/ExceptionExpectancy/ExceptionExpectancyFixProviderTests.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/ExceptionExpectancy/ExpectedExceptionOnlyFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/ExceptionExpectancy/ExpectedExceptionOnlyFixture.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/ExceptionExpectancy/MixedExpectedExceptionAndTestCasesFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/ExceptionExpectancy/MixedExpectedExceptionAndTestCasesFixture.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/ExceptionExpectancy/TestCaseOnlyFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/ExceptionExpectancy/TestCaseOnlyFixture.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/ExceptionExpectancy/TriviaFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/ExceptionExpectancy/TriviaFixture.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Helpers/CodeFixVerifier.Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Helpers/CodeFixVerifier.Helper.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Helpers/CodeFixVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Helpers/CodeFixVerifier.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Helpers/DiagnosticResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Helpers/DiagnosticResult.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Helpers/DiagnosticVerifier.Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Helpers/DiagnosticVerifier.Helper.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/Helpers/DiagnosticVerifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/Helpers/DiagnosticVerifier.cs -------------------------------------------------------------------------------- /nunit.migrator.tests/nunit.migrator.tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.tests/nunit.migrator.tests.csproj -------------------------------------------------------------------------------- /nunit.migrator.vsix/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.vsix/LICENSE.txt -------------------------------------------------------------------------------- /nunit.migrator.vsix/mw-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.vsix/mw-logo.png -------------------------------------------------------------------------------- /nunit.migrator.vsix/nunit.migrator.vsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.vsix/nunit.migrator.vsix.csproj -------------------------------------------------------------------------------- /nunit.migrator.vsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator.vsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /nunit.migrator/AssertionsAndConstraints/AssertionMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/AssertionsAndConstraints/AssertionMigration.cs -------------------------------------------------------------------------------- /nunit.migrator/AssertionsAndConstraints/ConstraintMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/AssertionsAndConstraints/ConstraintMigration.cs -------------------------------------------------------------------------------- /nunit.migrator/AssertionsAndConstraints/ICompilationStartAnalyzing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/AssertionsAndConstraints/ICompilationStartAnalyzing.cs -------------------------------------------------------------------------------- /nunit.migrator/AssertionsAndConstraints/IFixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/AssertionsAndConstraints/IFixer.cs -------------------------------------------------------------------------------- /nunit.migrator/AssertionsAndConstraints/MemberAccessBasedAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/AssertionsAndConstraints/MemberAccessBasedAnalyzer.cs -------------------------------------------------------------------------------- /nunit.migrator/AssertionsAndConstraints/MemberAccessBasedFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/AssertionsAndConstraints/MemberAccessBasedFixProvider.cs -------------------------------------------------------------------------------- /nunit.migrator/AssertionsAndConstraints/MemberAccessBasedMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/AssertionsAndConstraints/MemberAccessBasedMigration.cs -------------------------------------------------------------------------------- /nunit.migrator/AssertionsAndConstraints/MemberAccessCodeAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/AssertionsAndConstraints/MemberAccessCodeAction.cs -------------------------------------------------------------------------------- /nunit.migrator/AssertionsAndConstraints/MemberAccessMigrationTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/AssertionsAndConstraints/MemberAccessMigrationTable.cs -------------------------------------------------------------------------------- /nunit.migrator/Attributes/AttributeAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Attributes/AttributeAnalyzer.cs -------------------------------------------------------------------------------- /nunit.migrator/Attributes/ChangedSemanticAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Attributes/ChangedSemanticAnalyzer.cs -------------------------------------------------------------------------------- /nunit.migrator/Attributes/ChangedSemanticFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Attributes/ChangedSemanticFixProvider.cs -------------------------------------------------------------------------------- /nunit.migrator/Attributes/IgnoreReasonAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Attributes/IgnoreReasonAnalyzer.cs -------------------------------------------------------------------------------- /nunit.migrator/Attributes/IgnoreReasonFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Attributes/IgnoreReasonFixProvider.cs -------------------------------------------------------------------------------- /nunit.migrator/Attributes/NoLongerSupportedAttributesAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Attributes/NoLongerSupportedAttributesAnalyzer.cs -------------------------------------------------------------------------------- /nunit.migrator/Attributes/ReplaceDeprecatedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Attributes/ReplaceDeprecatedAttribute.cs -------------------------------------------------------------------------------- /nunit.migrator/Attributes/StaticSourceAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Attributes/StaticSourceAnalyzer.cs -------------------------------------------------------------------------------- /nunit.migrator/Attributes/StaticSourceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Attributes/StaticSourceAttribute.cs -------------------------------------------------------------------------------- /nunit.migrator/Attributes/StaticSourceFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Attributes/StaticSourceFixProvider.cs -------------------------------------------------------------------------------- /nunit.migrator/Attributes/TestIgnoringModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Attributes/TestIgnoringModel.cs -------------------------------------------------------------------------------- /nunit.migrator/Attributes/TrivialAttributeArgumentReplaceAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Attributes/TrivialAttributeArgumentReplaceAnalyzer.cs -------------------------------------------------------------------------------- /nunit.migrator/Attributes/TrivialAttributeArgumentReplaceFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Attributes/TrivialAttributeArgumentReplaceFixProvider.cs -------------------------------------------------------------------------------- /nunit.migrator/Attributes/TrivialAttributeReplaceAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Attributes/TrivialAttributeReplaceAnalyzer.cs -------------------------------------------------------------------------------- /nunit.migrator/Attributes/TrivialAttributeReplaceFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Attributes/TrivialAttributeReplaceFixProvider.cs -------------------------------------------------------------------------------- /nunit.migrator/CatchAllSymbolAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/CatchAllSymbolAnalyzer.cs -------------------------------------------------------------------------------- /nunit.migrator/Descriptors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Descriptors.cs -------------------------------------------------------------------------------- /nunit.migrator/ExceptionExpectancy/CodeActions/AssertExceptionBlockDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/ExceptionExpectancy/CodeActions/AssertExceptionBlockDecorator.cs -------------------------------------------------------------------------------- /nunit.migrator/ExceptionExpectancy/CodeActions/AssertExceptionMessageDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/ExceptionExpectancy/CodeActions/AssertExceptionMessageDecorator.cs -------------------------------------------------------------------------------- /nunit.migrator/ExceptionExpectancy/CodeActions/AssertHandlerMethodDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/ExceptionExpectancy/CodeActions/AssertHandlerMethodDecorator.cs -------------------------------------------------------------------------------- /nunit.migrator/ExceptionExpectancy/CodeActions/AssertThrowsExceptionCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/ExceptionExpectancy/CodeActions/AssertThrowsExceptionCreator.cs -------------------------------------------------------------------------------- /nunit.migrator/ExceptionExpectancy/CodeActions/AssertUserMessageDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/ExceptionExpectancy/CodeActions/AssertUserMessageDecorator.cs -------------------------------------------------------------------------------- /nunit.migrator/ExceptionExpectancy/CodeActions/AssignAssertThrowsToLocalVariableDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/ExceptionExpectancy/CodeActions/AssignAssertThrowsToLocalVariableDecorator.cs -------------------------------------------------------------------------------- /nunit.migrator/ExceptionExpectancy/CodeActions/ExceptionExpectancyCodeAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/ExceptionExpectancy/CodeActions/ExceptionExpectancyCodeAction.cs -------------------------------------------------------------------------------- /nunit.migrator/ExceptionExpectancy/CodeActions/IAssertExceptionBlockCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/ExceptionExpectancy/CodeActions/IAssertExceptionBlockCreator.cs -------------------------------------------------------------------------------- /nunit.migrator/ExceptionExpectancy/ExceptionExpectancyAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/ExceptionExpectancy/ExceptionExpectancyAnalyzer.cs -------------------------------------------------------------------------------- /nunit.migrator/ExceptionExpectancy/ExceptionExpectancyFixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/ExceptionExpectancy/ExceptionExpectancyFixProvider.cs -------------------------------------------------------------------------------- /nunit.migrator/ExceptionExpectancy/Model/ExceptionExpectancyAtAttributeLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/ExceptionExpectancy/Model/ExceptionExpectancyAtAttributeLevel.cs -------------------------------------------------------------------------------- /nunit.migrator/ExceptionExpectancy/Model/ExceptionExpectancyMethodModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/ExceptionExpectancy/Model/ExceptionExpectancyMethodModel.cs -------------------------------------------------------------------------------- /nunit.migrator/ExceptionExpectancy/Model/ExpectedExceptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/ExceptionExpectancy/Model/ExpectedExceptionAttribute.cs -------------------------------------------------------------------------------- /nunit.migrator/ExceptionExpectancy/Model/TestCaseExceptionEquivalenceCluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/ExceptionExpectancy/Model/TestCaseExceptionEquivalenceCluster.cs -------------------------------------------------------------------------------- /nunit.migrator/ExceptionExpectancy/Model/TestCaseExpectingExceptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/ExceptionExpectancy/Model/TestCaseExpectingExceptionAttribute.cs -------------------------------------------------------------------------------- /nunit.migrator/Helpers/Formatting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Helpers/Formatting.cs -------------------------------------------------------------------------------- /nunit.migrator/Helpers/NUnitFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Helpers/NUnitFramework.cs -------------------------------------------------------------------------------- /nunit.migrator/Helpers/SyntaxHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Helpers/SyntaxHelper.cs -------------------------------------------------------------------------------- /nunit.migrator/Texts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/Texts.cs -------------------------------------------------------------------------------- /nunit.migrator/nunit.migrator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/nunit.migrator.csproj -------------------------------------------------------------------------------- /nunit.migrator/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/tools/install.ps1 -------------------------------------------------------------------------------- /nunit.migrator/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/nunit.migrator/tools/uninstall.ps1 -------------------------------------------------------------------------------- /set-versions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/set-versions.ps1 -------------------------------------------------------------------------------- /sonar.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wachulski/nunit-migrator/HEAD/sonar.ps1 --------------------------------------------------------------------------------