diff --git a/src/main/resources/inspectionDescriptions/AssertThatBooleanCondition.html b/src/main/resources/inspectionDescriptions/AssertThatBooleanCondition.html index 6c72118..9fd92cc 100644 --- a/src/main/resources/inspectionDescriptions/AssertThatBooleanCondition.html +++ b/src/main/resources/inspectionDescriptions/AssertThatBooleanCondition.html @@ -2,6 +2,6 @@ Turns assertThat(condition).isEqualTo(true/false) into assertThat(condition).isTrue()/isFalse(). -Also works with constant expressions and Boolean.TRUE/FALSE. +
Also works with constant expressions and Boolean.TRUE/FALSE. \ No newline at end of file diff --git a/src/main/resources/inspectionDescriptions/AssertThatGuavaOptional.html b/src/main/resources/inspectionDescriptions/AssertThatGuavaOptional.html index ac234b9..cc39d6d 100644 --- a/src/main/resources/inspectionDescriptions/AssertThatGuavaOptional.html +++ b/src/main/resources/inspectionDescriptions/AssertThatGuavaOptional.html @@ -3,6 +3,6 @@ Looks at expected and actual expression being of Guava Optional type and whether the statement effectively tries to assert the presence, absence or content and then replaces the statement by isPresent(), isAbsent(), or contains(). -Requires AssertJ-Guava to be in classpath. +
Requires AssertJ-Guava to be in classpath. \ No newline at end of file diff --git a/src/main/resources/inspectionDescriptions/AssertThatInstanceOf.html b/src/main/resources/inspectionDescriptions/AssertThatInstanceOf.html index f9cf265..ec0c8a9 100644 --- a/src/main/resources/inspectionDescriptions/AssertThatInstanceOf.html +++ b/src/main/resources/inspectionDescriptions/AssertThatInstanceOf.html @@ -2,6 +2,6 @@ Turns assertThat(object instanceof classname).isEqualTo(true/false) into assertThat(object).is(Not)InstanceOf(classname.class). -Also works with constant expressions and Boolean.TRUE/FALSE. +
Also works with constant expressions and Boolean.TRUE/FALSE. \ No newline at end of file diff --git a/src/main/resources/inspectionDescriptions/AssertThatInvertedBooleanCondition.html b/src/main/resources/inspectionDescriptions/AssertThatInvertedBooleanCondition.html index e949f13..9229f86 100644 --- a/src/main/resources/inspectionDescriptions/AssertThatInvertedBooleanCondition.html +++ b/src/main/resources/inspectionDescriptions/AssertThatInvertedBooleanCondition.html @@ -2,6 +2,6 @@ Turns assertThat(!condition).isEqualTo(true/false) into assertThat(condition).isFalse()/isTrue(). -Also works with constant expressions and Boolean.TRUE/FALSE. +
Also works with constant expressions and Boolean.TRUE/FALSE. \ No newline at end of file diff --git a/src/main/resources/inspectionDescriptions/AssertThatSize.html b/src/main/resources/inspectionDescriptions/AssertThatSize.html index 495fa63..2c0b2d2 100644 --- a/src/main/resources/inspectionDescriptions/AssertThatSize.html +++ b/src/main/resources/inspectionDescriptions/AssertThatSize.html @@ -2,6 +2,6 @@ Makes assertions on sizes of arrays, collections, strings, or CharSequences more concise by replacing them with isEmpty(), isNotEmpty(), hasSize(), or hasSameSizeAs(). -Several more conversions are available with AssertJ 13.2.0 or later. +
Several more conversions are available with AssertJ 13.2.0 or later. \ No newline at end of file diff --git a/src/main/resources/inspectionDescriptions/JUnitAssertToAssertJ.html b/src/main/resources/inspectionDescriptions/JUnitAssertToAssertJ.html index af787a4..512346c 100644 --- a/src/main/resources/inspectionDescriptions/JUnitAssertToAssertJ.html +++ b/src/main/resources/inspectionDescriptions/JUnitAssertToAssertJ.html @@ -4,7 +4,8 @@ Tries to convert most of the JUnit 4 assertions to AssertJ-Format.
Works for assertTrue(), assertFalse(), assertNull(), assertNotNull(), assertEquals(), assertNotEquals(), assertSame() assertNotSame(), assertArrayEquals(). Copes with variants with message and without, handles special versions for double and float types (including arrays). -

+

Does not support Hamcrest-Matchers. If you need that kind of conversion, you might want to check out the Assertions2AssertJ plugin by Ric Emery. +

\ No newline at end of file