Package org.jbehave.core.junit.pico

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

package org.jbehave.core.junit.pico;

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

/**
* AnnotatedPathRunner that uses {@link PicoAnnotationBuilder}.
*/
public class PicoAnnotatedPathRunner extends AnnotatedPathRunner {

    public PicoAnnotatedPathRunner(Class<?> testClass) throws InitializationError {
        super(testClass);
    }

    public AnnotationBuilder annotationBuilder() {
        return new PicoAnnotationBuilder(testClass());
    }

}
TOP

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

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.