All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.ipsedixit.annotation.AnnotationConfiguration Maven / Gradle / Ivy

Go to download

Ipsedixit is a lightweight provider of arbitrary data, mocks and dummies for your Java testing pleasure. It is designed to reduce the amount of boilerplate setup code in your tests, allowing you to spend more time solving more interesting problems. Check out the wiki for the latest docco and examples.

The newest version!
/*
 *  Copyright 2008 the original author or authors.
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

package net.sf.ipsedixit.annotation;

import java.util.List;
import net.sf.ipsedixit.core.FieldHandler;
import net.sf.ipsedixit.core.ObjectAnalyser;
import net.sf.ipsedixit.integration.Configuration;

/**
 * Implementation of Configuration that reads annotations on the class.
 */
public class AnnotationConfiguration implements Configuration {

    private static final IpsedixitAnnotationHelper IPSEDIXIT_ANNOTATION_HELPER = new DefaultIpsedixitAnnotationHelper();

    private final Class clazz;

    /**
     * Creates a new AnnotationConfiguration.
     * @param clazz the class containing Ipsedixit annotations.
     */
    public AnnotationConfiguration(Class clazz) {
        this.clazz = clazz;
    }

    /**
     * {@inheritDoc}
     */
    public ObjectAnalyser getObjectAnalyser() {
        return IPSEDIXIT_ANNOTATION_HELPER.getClassAnalyser(clazz);
    }

    /**
     * {@inheritDoc}
     */
    public List getAdditionalFieldHandlers() {
        return IPSEDIXIT_ANNOTATION_HELPER.getAdditionalFieldHandlers(clazz);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy