Class JUnitAssertNullToAssertThat


  • public class JUnitAssertNullToAssertThat
    extends org.openrewrite.Recipe
    This is a refactoring visitor that will convert JUnit-style assertNull() to assertJ's assertThat().isNull().

    This visitor only supports the migration of the following JUnit 5 assertNull() methods:

     assertNull(Object actual) == assertThat(condition).isNull()
     assertNull(Object actual, String message) == assertThat(condition).as(message).isNull();
     assertNull(Object actual, Supplier messageSupplier) == assertThat(condition).withFailMessage(messageSupplier).isNull();
     
    • Field Summary

      • Fields inherited from class org.openrewrite.Recipe

        NOOP
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getDescription()  
      java.lang.String getDisplayName()  
      protected org.openrewrite.TreeVisitor<?,​org.openrewrite.ExecutionContext> getVisitor()  
      • Methods inherited from class org.openrewrite.Recipe

        doNext, equals, getApplicableTest, getDescriptor, getJacksonPolymorphicTypeTag, getLanguages, getName, getRecipeList, getTags, hashCode, run, run, run, run, validate, validate, validateAll, validateAll, visit
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • JUnitAssertNullToAssertThat

        public JUnitAssertNullToAssertThat()
    • Method Detail

      • getDisplayName

        public java.lang.String getDisplayName()
        Specified by:
        getDisplayName in class org.openrewrite.Recipe
      • getDescription

        public java.lang.String getDescription()
        Overrides:
        getDescription in class org.openrewrite.Recipe
      • getVisitor

        protected org.openrewrite.TreeVisitor<?,​org.openrewrite.ExecutionContext> getVisitor()
        Overrides:
        getVisitor in class org.openrewrite.Recipe