Uses of Interface
org.jmock.api.MockObjectNamingScheme
-
Packages that use MockObjectNamingScheme Package Description org.jmock The jMock "Domain-Specific Embedded Language" API.org.jmock.integration.junit3 Integrates jMock with JUnit 3.org.jmock.lib Implementations of the core interfaces that are used to adjust or extend jMock's basic functionality. -
-
Uses of MockObjectNamingScheme in org.jmock
Fields in org.jmock declared as MockObjectNamingScheme Modifier and Type Field Description private MockObjectNamingScheme
Mockery. namingScheme
Methods in org.jmock with parameters of type MockObjectNamingScheme Modifier and Type Method Description void
Mockery. setNamingScheme(MockObjectNamingScheme namingScheme)
Changes the naming scheme used to generate names for mock objects that have not been explicitly named in the test. -
Uses of MockObjectNamingScheme in org.jmock.integration.junit3
Methods in org.jmock.integration.junit3 with parameters of type MockObjectNamingScheme Modifier and Type Method Description void
MockObjectTestCase. setNamingScheme(MockObjectNamingScheme namingScheme)
Changes the naming scheme used to generate names for mock objects that have not been explicitly named in the test. -
Uses of MockObjectNamingScheme in org.jmock.lib
Classes in org.jmock.lib that implement MockObjectNamingScheme Modifier and Type Class Description class
CamelCaseNamingScheme
A naming scheme in which the implicit name for a mock object is the mocked type's name with the first character in lower case.class
LastWordNamingScheme
A naming scheme in which the implicit name for a mock object is the last word of the mocked type's name in lower case.class
RetroNamingScheme
A naming scheme in which the implicit name for a mock object is the mocked type's name prepend with "mock".Fields in org.jmock.lib declared as MockObjectNamingScheme Modifier and Type Field Description static MockObjectNamingScheme
LastWordNamingScheme. INSTANCE
-