org.mockito.internal.util.MockName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockito-all Show documentation
Show all versions of mockito-all Show documentation
Mock objects library for java
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.internal.util;
import java.io.Serializable;
public class MockName implements Serializable {
private static final long serialVersionUID = 8014974700844306925L;
private final String mockName;
private boolean surrogate;
@SuppressWarnings("unchecked")
public MockName(String mockName, Class classToMock) {
if (mockName == null) {
this.mockName = toInstanceName(classToMock);
this.surrogate = true;
} else {
this.mockName = mockName;
}
}
private static String toInstanceName(Class> clazz) {
String className = clazz.getSimpleName();
if (className.length() == 0) {
//it's an anonymous class, let's get name from the parent
className = clazz.getSuperclass().getSimpleName();
}
//lower case first letter
return className.substring(0, 1).toLowerCase() + className.substring(1);
}
public boolean isSurrogate() {
return surrogate;
}
@Override
public String toString() {
return mockName;
}
}