Interface IMockMethod

All Known Implementing Classes:
DynamicMockMethod, StaticMockMethod

public interface IMockMethod
Represents a method that can be mocked. Typically but not necessarily corresponds to a physically declared method in an interface or class.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the name of the method.
    Returns the parameter types of the method.
    Returns the return type of the method.
    boolean
    Tells whether the method is static or an instance method.
  • Method Details

    • getName

      String getName()
      Returns the name of the method.
      Returns:
      the name of the method
    • getParameterTypes

      List<Class<?>> getParameterTypes()
      Returns the parameter types of the method. In cases where no static type information is available, all arguments are assumed to have type Object.
      Returns:
      the parameter types of the method
    • getReturnType

      Class<?> getReturnType()
      Returns the return type of the method. In cases where no static type information is available, the return type is assumed to be Object.
      Returns:
      the return type of the method
    • isStatic

      boolean isStatic()
      Tells whether the method is static or an instance method.
      Returns:
      whether the method is static or an instance method