Java tutorial
/* * (c) Copyright 2010 Nate Riffe <inkblot@movealong.org> * * This file is part of junit-fu. * * junit-fu is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * junit-fu is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Affero General Public License for more details. * * You should have received a copy of the GNU General Public License * along with junit-fu. If not, see <http://www.gnu.org/licenses/>. */ package org.movealong.junitfu; import com.google.inject.Inject; import java.lang.annotation.Annotation; import java.lang.reflect.Constructor; import java.util.Collection; import java.util.Collections; import java.util.HashSet; import static org.apache.commons.lang.StringUtils.defaultIfEmpty; import static org.apache.commons.lang.StringUtils.uncapitalize; /** * Created by IntelliJ IDEA. * User: inkblot * Date: Dec 23, 2010 * Time: 11:56:52 PM */ class ConstructorMockBinder extends CompositeMockBinder { public ConstructorMockBinder(Constructor<?> constructor) { super(createMockBinders(constructor)); } private static Collection<? extends MockBinder> createMockBinders(Constructor<?> constructor) { if (constructor.getAnnotation(Inject.class) != null) { HashSet<MockBinder> mockBinders = new HashSet<MockBinder>(); for (int parameterIndex = 0; parameterIndex < constructor .getParameterTypes().length; parameterIndex++) { for (Annotation annotation : constructor.getParameterAnnotations()[parameterIndex]) { if (annotation.annotationType() == Mock.class) { Class<?> mockClass = constructor.getParameterTypes()[parameterIndex]; String mockName = defaultIfEmpty(((Mock) annotation).value(), uncapitalize(mockClass.getSimpleName())); mockBinders.add(new SimpleMockBinder(mockClass, mockName)); } } } return mockBinders; } else { return Collections.emptyList(); } } }