mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-15 16:28:56 +00:00

- Feature: Allow to use RegisterExtension along with injected fields. - Releng: Make sure that we run the testing.tests for Junit5 on Jenkins. closes eclipse/xtext#1851
19 lines
785 B
Groovy
19 lines
785 B
Groovy
ext.title = 'Xtext Testing Library'
|
|
description = 'Infrastructure for testing Xtext languages (supersedes org.eclipse.xtext.junit4).'
|
|
|
|
dependencies {
|
|
compile project(':org.eclipse.xtext')
|
|
compile project(':org.eclipse.xtext.ide')
|
|
compile 'org.eclipse.lsp4j:org.eclipse.lsp4j'
|
|
optional 'junit:junit'
|
|
optional 'org.junit.jupiter:junit-jupiter-api'
|
|
optional 'org.junit.jupiter:junit-jupiter-engine'
|
|
// optional for the utilities but mandatory to run the tests
|
|
testImplementation 'junit:junit'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api'
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-engine'
|
|
testImplementation 'org.junit.platform:junit-platform-suite-api'
|
|
testImplementation 'org.junit.platform:junit-platform-runner'
|
|
}
|
|
|
|
sourceSets.test.java.srcDir 'tests'
|