Package org.jbehave.core.junit.pico

Source Code of org.jbehave.core.junit.pico.PicoAnnotatedEmbedderRunner

package org.jbehave.core.junit.pico;

import org.jbehave.core.configuration.AnnotationBuilder;
import org.jbehave.core.configuration.pico.PicoAnnotationBuilder;
import org.jbehave.core.junit.AnnotatedEmbedderRunner;
import org.junit.runners.model.InitializationError;

/**
* AnnotatedEmbedderRunner that uses {@link PicoAnnotationBuilder}.
*/
public class PicoAnnotatedEmbedderRunner extends AnnotatedEmbedderRunner {
   
    private PicoAnnotationBuilder annotationBuilder;

    public PicoAnnotatedEmbedderRunner(Class<?> testClass) throws InitializationError {
        super(testClass);
        annotationBuilder = new PicoAnnotationBuilder(testClass());
    }

    public AnnotationBuilder annotationBuilder() {
        return annotationBuilder;
    }

}
TOP

Related Classes of org.jbehave.core.junit.pico.PicoAnnotatedEmbedderRunner

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.