From: Ed Warnicke Date: Mon, 3 Aug 2015 16:49:27 +0000 (-0700) Subject: Small fix to IT in startup archetype. X-Git-Tag: release/beryllium~393 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=commitdiff_plain;h=12e76f0fa6a9bb58632917ccf9aea039a1675210 Small fix to IT in startup archetype. Change-Id: I3407e23af6228bbe7d881f9b9884e698186f533e Signed-off-by: Ed Warnicke --- diff --git a/opendaylight/archetypes/opendaylight-startup/src/main/resources/archetype-resources/it/src/test/java/__packageInPathFormat__/it/__classPrefix__IT.java b/opendaylight/archetypes/opendaylight-startup/src/main/resources/archetype-resources/it/src/test/java/__packageInPathFormat__/it/__classPrefix__IT.java index 43ccdb8479..eda5e733ac 100644 --- a/opendaylight/archetypes/opendaylight-startup/src/main/resources/archetype-resources/it/src/test/java/__packageInPathFormat__/it/__classPrefix__IT.java +++ b/opendaylight/archetypes/opendaylight-startup/src/main/resources/archetype-resources/it/src/test/java/__packageInPathFormat__/it/__classPrefix__IT.java @@ -18,7 +18,6 @@ import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.opendaylight.controller.mdsal.it.base.AbstractMdsalTestBase; -import org.opendaylight.hello.HelloIT; import org.ops4j.pax.exam.Option; import org.ops4j.pax.exam.junit.PaxExam; import org.ops4j.pax.exam.karaf.options.LogLevelOption.LogLevel; @@ -32,7 +31,7 @@ import org.slf4j.LoggerFactory; @ExamReactorStrategy(PerClass.class) public class ${classPrefix}IT extends AbstractMdsalTestBase { private static final Logger LOG = LoggerFactory.getLogger(${classPrefix}IT.class); - + @Override public String getModuleName() { return "${artifactId}"; @@ -57,7 +56,7 @@ public class ${classPrefix}IT extends AbstractMdsalTestBase { public String getFeatureName() { return "odl-${artifactId}-ui"; } - + @Override public Option getLoggingOption() { Option option = editConfigurationFilePut(ORG_OPS4J_PAX_LOGGING_CFG, @@ -66,9 +65,9 @@ public class ${classPrefix}IT extends AbstractMdsalTestBase { option = composite(option, super.getLoggingOption()); return option; } - + @Test public void test${artifactId}FeatureLoad() { Assert.assertTrue(true); } -} \ No newline at end of file +}