org.deephacks.tools4j.config.test.cdi.CdiFeatureTestBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tools4j-config-tck Show documentation
Show all versions of tools4j-config-tck Show documentation
Functional Tests for Tools4j Config
package org.deephacks.tools4j.config.test.cdi;
import java.util.ArrayList;
import java.util.List;
import org.deephacks.tools4j.config.test.FeatureTestsBuilder;
public class CdiFeatureTestBuilder extends FeatureTestsBuilder {
public static CdiFeatureTestBuilder named(String name) {
CdiFeatureTestBuilder builder = new CdiFeatureTestBuilder();
builder.name = name;
return builder;
}
@Override
protected List> getTests() {
List> tests = new ArrayList>();
tests.add(CdiFeatureTest.class);
return tests;
}
}