From 855fb03f7c703d691b909ac42ff2dd0be0c11a55 Mon Sep 17 00:00:00 2001 From: chrisly42 Date: Tue, 24 Sep 2019 22:16:11 +0200 Subject: [PATCH] One more option for AssertThatCollectionOrMap inspection for warnings without quickfix. AssertThatGuavaOptional inspections will now avoid conversions from .get() to .contains() for array types (currently not correctly supported by AssertJ-Guava). --- README.md | 2 ++ build.gradle | 2 ++ ...ThatCollectionOrMapExpressionInspection.kt | 17 ++++++++---- .../AssertThatGuavaOptionalInspection.kt | 1 + ...CollectionOrMapExpressionInspectionTest.kt | 27 +++++++++++++++++-- 5 files changed, 42 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index d0494b8..d5ee242 100644 --- a/README.md +++ b/README.md @@ -566,6 +566,8 @@ Feel free to use the code (in package ```de.platon42.intellij.jupiter```) for yo #### V1.5 (unreleased) - Fix for AssertThatCollectionOrMap inspection sometimes causing an index out of bounds exception. +- AssertThatGuavaOptional inspections will now avoid conversions from ```.get()``` to ```.contains()``` + for array types (currently not correctly supported by ```contains()``` in AssertJ-Guava). - Added an settings option for AssertThatCollectionOrMap inspection respecting the degenerated case of maps with ```null``` values. It is now possible to change the behavior for ```map.get(key) == null```, so it can offer either ```.doesNotContainKey()``` (default) or ```.containsEntry(key, null)```, or even both. diff --git a/build.gradle b/build.gradle index 2230399..4b00d69 100644 --- a/build.gradle +++ b/build.gradle @@ -46,6 +46,8 @@ patchPluginXml {

V1.5 (unreleased)