Advertisement
Guest User

Untitled

a guest
Jul 19th, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. @RunWith(Arquillian.class)
  2. @Template(url = "https://raw.githubusercontent.com/${template.repository:jboss-openshift}/application-templates/${template.branch:master}/decisionserver/decisionserver63-basic-s2i.json",
  3. parameters = {
  4. @TemplateParameter(name = "KIE_SERVER_USER", value = "${kie.username:kieserver}"),
  5. @TemplateParameter(name = "KIE_SERVER_PASSWORD", value = "${kie.password:Redhat@123}")
  6. }
  7. )
  8. @OpenShiftResources({
  9. @OpenShiftResource("https://raw.githubusercontent.com/${template.repository:jboss-openshift}/application-templates/${template.branch:master}/secrets/decisionserver-app-secret.json")
  10. })
  11. public class DecisionServerBasicTest extends DecisionServerTestBase {
  12. ...
  13. @RunAsClient
  14. public void testDecisionServerCapabilities() throws MalformedURLException {
  15. checkKieServerCapabilities(getRouteURL(), "BRM");
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement