Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 522 Bytes

File metadata and controls

14 lines (10 loc) · 522 Bytes

gradle-xray

A gradle plugin for running xray tests.

More about xray here: https://github.com/robwhitby/xray

This plugin defines a task which will trigger xray tests via an HTTP request. It parses the json response and prints out any failures to the console. It is helpful for running xray tests as part of your integration test task.

example:

task xrayAddn(type: XrayTask) {
    user = "user"
    password = "pass"
    url = "http://localhost:8003/xray/?dir=test&modules=&tests=&format=json"
}