blob: 6284a251604115720b376f138167abd64ee88b80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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
systemProperty 'sonar.communityRuntimeVersion', project.communityVersion
}
testLogging {
events "skipped", "failed"
showStandardStreams = true
exceptionFormat 'full'
}
}
}
|