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

templates.cucumber.test.cdi.context.vm Maven / Gradle / Ivy

package ${basePackage};

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

import jakarta.enterprise.inject.spi.Extension;

import com.boozallen.aissemble.core.cdi.CdiContext;

import io.smallrye.reactive.messaging.memory.InMemoryConnector;


/**
 * Provides the set of CDI context values needed to run Cucumber tests.
 *
 * GENERATED STUB CODE - PLEASE ***DO*** MODIFY
 *
 * Originally generated from: ${templateName} 
 */
public class TestCdiContext implements CdiContext {

	@Override
	public List> getCdiClasses() {
		List> classes = new ArrayList>();
		classes.add(InMemoryConnector.class);
		return classes;
	}

	@Override
	public List getExtensions() {
		return Collections.emptyList();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy