blob: bb5fa3b4485e2374112a4b92b2172dc561c78dd6 (
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
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'
}
}
}
|