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
Methods in org.jmock with parameters of type MockObjectNamingScheme Modifier and Type Method Description voidMockery. 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 voidMockObjectTestCase. 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 classCamelCaseNamingSchemeA naming scheme in which the implicit name for a mock object is the mocked type's name with the first character in lower case.classLastWordNamingSchemeA naming scheme in which the implicit name for a mock object is the last word of the mocked type's name in lower case.classRetroNamingSchemeA 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 MockObjectNamingSchemeLastWordNamingScheme. INSTANCE
-