We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
one day, we'll write a paper about AssertFixer. here we collect use cases and stories.
The text was updated successfully, but these errors were encountered:
First use case: the tests of NpeFix fail because a change of the pretty-printing format of spoon.
ReplaceGlobalTest.ReplaceGlobalInstanceTest:33 expected:<if ([(array)] == null) this.a...> but was:<if ([array] == null) this.a...> ReplaceGlobalTest.ReplaceGlobalVariableTest:54 expected:<if ([(array)] == null) this.a...> but was:<if ([array] == null) this.a...> SkipLineTest.skipLineTest:32 expected:<if ([(array)] != null) for (j...> but was:<if ([array] != null) for (j...> SkipMethodReturnTest.skipMethodReturnInConstructorTest:33 expected:<... super(); if ([(field)] != null) { ...> but was:<... super(); if ([field] != null) { ...> SkipMethodReturnTest.skipLineTest:60 expected:<if ([(array)] == null) return...> but was:<if ([array] == null) return...> ReplaceLocalTest.ReplaceLocalInstanceTest:33 expected:<if ([(array)] == null) for (S...> but was:<if ([array] == null) for (S...> ReplaceLocalTest.ReplaceLocalVariableTest:65 expected:<if ([(array)] == null) for (S...> but was:<if ([array] == null) for (S...>
Should be easily fixed by AsserFixer.
Sorry, something went wrong.
what about IDE support? See https://youtrack.jetbrains.com/issue/IDEA-218275
No branches or pull requests
one day, we'll write a paper about AssertFixer. here we collect use cases and stories.
The text was updated successfully, but these errors were encountered: