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

de.hilling.junit.cdi.cucumber.CucumberCdi Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package de.hilling.junit.cdi.cucumber;

import cucumber.api.junit.Cucumber;
import org.junit.runners.model.InitializationError;

import java.io.IOException;

/**
 * Run cucumber tests with cdi injection.
 */
public class CucumberCdi extends Cucumber {
    /**
     * Constructor called by JUnit.
     *
     * @param clazz the class with the @RunWith annotation.
     * @throws java.io.IOException                         if there is a problem
     * @throws org.junit.runners.model.InitializationError if there is another problem
     */
    public CucumberCdi(Class clazz) throws InitializationError, IOException {
        super(clazz);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy