*/
private static synchronized void verifyClass(Class<?>... types) {
for (Class<?> type : types) {
final MethodInvocationControl invocationHandler = MockRepository.getStaticMethodInvocationControl(type);
if (invocationHandler != null) {
invocationHandler.verify();
}
NewInvocationControl<?> newInvocationControl = MockRepository.getNewInstanceControl(type);
if (newInvocationControl != null) {
try {
newInvocationControl.verify();