Package org.jmock.api
Interface MockObjectNamingScheme
-
- All Known Implementing Classes:
CamelCaseNamingScheme
,LastWordNamingScheme
,RetroNamingScheme
public interface MockObjectNamingScheme
Creates names for mock objects that have not explicitly been given a name.- Author:
- npryce
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
defaultNameFor(java.lang.Class<?> typeToMock)
Derive a name for a mock object from the name of the given type.
-