HomeSort by relevance Sort by last modified time
    Searched defs:mockedType (Results 1 - 3 of 3) sorted by null

  /external/dexmaker/dexmaker-mockito-inline/src/main/java/com/android/dx/mockito/inline/
MockFeatures.java 12 final Class<T> mockedType;
15 private MockFeatures(Class<T> mockedType, Set<Class<?>> interfaces) {
16 this.mockedType = mockedType;
20 static <T> MockFeatures<T> withMockFeatures(Class<T> mockedType, Set<Class<?>> interfaces) {
21 return new MockFeatures<>(mockedType, interfaces);
  /external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
MockFeatures.java 14 final Class<T> mockedType;
19 private MockFeatures(Class<T> mockedType, Set<Class<?>> interfaces, SerializableMode serializableMode, boolean stripAnnotations) {
20 this.mockedType = mockedType;
26 public static <T> MockFeatures<T> withMockFeatures(Class<T> mockedType,
30 return new MockFeatures<T>(mockedType, interfaces, serializableMode, stripAnnotations);
ByteBuddyCrossClassLoaderSerializationSupport.java 118 String mockedType = MockUtil.getMockSettings(mockitoMock).getTypeToMock().getCanonicalName();
120 "The mock '" + mockName + "' of type '" + mockedType + "'",

Completed in 552 milliseconds