Skip to content

Commit a372646

Browse files
committed
[KARAF-1798] Rename KarafRegionCommandsTest to RegionTest
git-svn-id: https://svn.apache.org/repos/asf/karaf/trunk@1383070 13f79535-47bb-0310-9956-ffa450edef68
1 parent 2159464 commit a372646

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

itests/src/test/java/org/apache/karaf/itests/KarafRegionCommandsTest.java renamed to itests/src/test/java/org/apache/karaf/itests/RegionTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@
2323

2424
@RunWith(JUnit4TestRunner.class)
2525
@ExamReactorStrategy(AllConfinedStagedReactorFactory.class)
26-
public class KarafRegionCommandsTest extends KarafTestSupport {
26+
public class RegionTest extends KarafTestSupport {
2727

2828
@Test
29-
public void info() throws Exception {
29+
public void infoCommand() throws Exception {
3030
String infoOutput = executeCommand("region:info");
3131
System.out.println(infoOutput);
3232
assertTrue(infoOutput.contains("org.eclipse.equinox.region.kernel"));
3333
assertTrue(infoOutput.contains("org.apache.karaf.region.application"));
3434
}
3535

3636
@Test
37-
public void addRegion() throws Exception {
37+
public void addRegionCommand() throws Exception {
3838
System.out.println(executeCommand("region:addregion itest"));
3939
String infoOutput = executeCommand("region:info");
4040
System.out.println(infoOutput);

region/core/src/main/java/org/apache/karaf/region/persist/RegionsPersistence.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19-
20-
2119
package org.apache.karaf.region.persist;
2220

2321
import org.osgi.framework.Bundle;

0 commit comments

Comments
 (0)