blob: e5951ddf5ef91ed868332a679c84b1eee9d474e9 [file] [log] [blame]
package org.apache.karaf.itests.features;
import org.apache.karaf.itests.KarafTestSupport;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.ops4j.pax.exam.junit.ExamReactorStrategy;
import org.ops4j.pax.exam.junit.JUnit4TestRunner;
import org.ops4j.pax.exam.spi.reactors.AllConfinedStagedReactorFactory;
@RunWith(JUnit4TestRunner.class)
@ExamReactorStrategy(AllConfinedStagedReactorFactory.class)
public class BootFeaturesTest extends KarafTestSupport {
@Test
public void testBootFeatures() throws Exception {
assertFeaturesInstalled("standard", "config", "region", "package", "kar", "management");
}
}