From e8ce8ce2c6070dc13bb7acbeb23cbaa22d8d01cf Mon Sep 17 00:00:00 2001 From: chrisly42 Date: Mon, 17 Feb 2020 18:33:11 +0100 Subject: [PATCH] BogusAssertionInspection will no longer warn if the expression contains method calls and now tries to avoid valid hashCode() and equals() tests. --- README.md | 13 +++++ build.gradle | 8 +++- .../inspections/BogusAssertionInspection.kt | 48 +++++++++++++++++-- .../BogusAssertionInspectionTest.kt | 1 + .../BogusAssertion/BogusAssertionBefore.java | 22 +++++++++ 5 files changed, 86 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8ba4428..97ca2c5 100644 --- a/README.md +++ b/README.md @@ -549,6 +549,14 @@ You can toggle the various inspections in the Settings/Editor/Inspections in the assertThat(map).hasSameSizeAs(map); ``` + Note that expressions with method calls will not cause a warning as the method call might have side effects + that result in the assertion not being bogus at all. + + If the assertions is either ```isEqualTo()``` or ```hasSameHashCodeAs()``` it may be checking custom + ```equals()``` or ```hashCode()``` behavior. If the test method name containing the statement has a + name that contains 'equal' or 'hashcode' (case insensitive), the warning will be weakened to information + level. + - ImplicitAssertion Detects and removes implicit use of ```isNotNull()```, ```isNotEmpty()``` and @@ -776,6 +784,11 @@ Feel free to use the code (in package ```de.platon42.intellij.jupiter```) for yo ## Changelog +#### V1.9 (unreleased) +- BogusAssertion inspection will no longer warn if the expression contains method calls. + Moreover, for assertions of ```isEqualTo()``` and ```hasSameHashCodeAs()```, AND if the containing method name contains 'equal' or 'hashcode', + the warning will be reduced to information level as the assertion may be testing ```equals()``` or ```hashCode()``` for validity. + #### V1.8 (14-Feb-20) Valentine Edition - Maintenance. Removed experimental API use. Updated dependencies. Fixed testing problems introduced with IntelliJ IDEA 2019.3 - Added new TwistedAssertion inspection that will warn about assertions with the actual expression being a constant indicating diff --git a/build.gradle b/build.gradle index 21974c9..1b44ca2 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ plugins { } group 'de.platon42' -version '1.8' +version '1.9' repositories { mavenCentral() @@ -43,6 +43,12 @@ intellij { patchPluginXml { changeNotes """ +

V1.9 (unreleased)

+

V1.8 (14-Feb-20) Valentine Edition