Package org.spockframework.mock
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 Details
-
getName
String getName()Returns the name of the method.- Returns:
- the name of the method
-
getParameterTypes
Returns the parameter types of the method. In cases where no static type information is available, all arguments are assumed to have typeObject
.- 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 beObject
.- 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
-