org.jboss.as.arquillian.service.ArquillianConfigServiceCustomizer Maven / Gradle / Ivy
The newest version!
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.jboss.as.arquillian.service;
import org.jboss.as.server.deployment.DeploymentUnit;
import org.jboss.msc.service.ServiceBuilder;
import org.jboss.msc.service.ServiceController;
/**
* Allows to customize ArquillianConfig service (e.g. get values injected and
* add dependencies) and to use the dependencies in test class loading.
*
* @author Arcadiy Ivanov
* @version $Revision: $
*/
public interface ArquillianConfigServiceCustomizer {
void customizeService(ArquillianConfig arquillianConfig, ServiceBuilder builder,
ServiceController> depController);
void customizeLoadClass(DeploymentUnit depUnit, Class> testClass);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy