Interface ClassReplaceStrategy


  • public interface ClassReplaceStrategy
    Specifies the replace strategy for a class.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void with​(Class<?> cls)
      Replaces all method invocations on class specified class with method invocation to cls.
    • Method Detail

      • with

        void with​(Class<?> cls)
        Replaces all method invocations on class specified class with method invocation to cls. Also replaces all constructor invocations. You can see this as duck typing.
        Parameters:
        cls - The class that will replace the other class.