File tree Expand file tree Collapse file tree 2 files changed +3
-5
lines changed
itests/src/test/java/org/apache/karaf/itests
region/core/src/main/java/org/apache/karaf/region/persist Expand file tree Collapse file tree 2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 23
23
24
24
@ RunWith (JUnit4TestRunner .class )
25
25
@ ExamReactorStrategy (AllConfinedStagedReactorFactory .class )
26
- public class KarafRegionCommandsTest extends KarafTestSupport {
26
+ public class RegionTest extends KarafTestSupport {
27
27
28
28
@ Test
29
- public void info () throws Exception {
29
+ public void infoCommand () throws Exception {
30
30
String infoOutput = executeCommand ("region:info" );
31
31
System .out .println (infoOutput );
32
32
assertTrue (infoOutput .contains ("org.eclipse.equinox.region.kernel" ));
33
33
assertTrue (infoOutput .contains ("org.apache.karaf.region.application" ));
34
34
}
35
35
36
36
@ Test
37
- public void addRegion () throws Exception {
37
+ public void addRegionCommand () throws Exception {
38
38
System .out .println (executeCommand ("region:addregion itest" ));
39
39
String infoOutput = executeCommand ("region:info" );
40
40
System .out .println (infoOutput );
Original file line number Diff line number Diff line change 16
16
* specific language governing permissions and limitations
17
17
* under the License.
18
18
*/
19
-
20
-
21
19
package org .apache .karaf .region .persist ;
22
20
23
21
import org .osgi .framework .Bundle ;
You can’t perform that action at this time.
0 commit comments