Skip to content

Commit

Permalink
[WFCORE-5279] Reorganized integration test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicarod7 committed Oct 18, 2022
1 parent 81bcb93 commit a83927a
Show file tree
Hide file tree
Showing 15 changed files with 436 additions and 317 deletions.
4 changes: 4 additions & 0 deletions testsuite/integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@
<artifactId>wildfly-arquillian-protocol-jmx</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.wildfly.core</groupId>
<artifactId>wildfly-core-test-runner</artifactId>
</dependency>
</dependencies>

</project>
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2017 Red Hat, Inc.
* Copyright 2016 Red Hat, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,17 +14,24 @@
* limitations under the License.
*/

package org.wildfly.test.feature.pack.elytron.tls.subsystem.common;
package org.jboss.as.test.shared;

import org.jboss.dmr.ModelNode;
import static org.wildfly.common.Assert.checkNotNullParamWithNullPointerException;

/**
* Represents objects which are convertable to ModelNode instances.
* CLI helper methods.
*
* @author Josef Cacek
*/
public interface ModelNodeConvertable {

ModelNode toModelNode();
public class CliUtils {

/**
* Escapes given path String for CLI.
*
* @param path path string to escape (must be not-<code>null</code>)
* @return escaped path
*/
public static String escapePath(String path) {
return checkNotNullParamWithNullPointerException("path", path).replace("\\", "\\\\");
}
}

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit a83927a

Please sign in to comment.