blob: fb4a98596895cd001b63467d018575d74f707a26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package org.sonar.build
import org.gradle.api.tasks.testing.Test
abstract class BlackBoxTest extends Test {
BlackBoxTest() {
systemProperty 'java.awt.headless', 'true'
systemProperty 'orchestrator.configUrl', System.getProperty('orchestrator.configUrl')
systemProperty 'webdriver.chrome.driver', System.getProperty('webdriver.chrome.driver')
if (!project.version.endsWith("-SNAPSHOT")) {
systemProperty 'sonar.runtimeVersion', project.version
}
testLogging {
events "skipped", "failed"
showStandardStreams = true
exceptionFormat 'full'
}
}
}
|