-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor tests to optimize and fix performance issues cause by versio…
…ning tests
- Loading branch information
Showing
6 changed files
with
656 additions
and
4 deletions.
There are no files selected for viewing
617 changes: 617 additions & 0 deletions
617
.../tier/shibboleth/admin/ui/repository/envers/EntityDescriptorEnversVersioningTestsX.groovy
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
plugins { | ||
id 'groovy' | ||
id 'jacoco' | ||
id 'org.springframework.boot' version '2.0.0.RELEASE' apply false | ||
id 'io.spring.dependency-management' version '1.0.6.RELEASE' | ||
} | ||
|
||
sourceCompatibility = 1.8 | ||
targetCompatibility = 1.8 | ||
|
||
repositories { | ||
jcenter() | ||
maven { | ||
url 'https://build.shibboleth.net/nexus/content/groups/public' | ||
artifactUrls = ['https://build.shibboleth.net/nexus/content/repositories/thirdparty-snapshots'] | ||
} | ||
} | ||
|
||
dependencyManagement { | ||
imports { | ||
mavenBom org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES | ||
} | ||
} | ||
|
||
dependencies { | ||
|
||
compile project(':backend') | ||
//testCompile project(':backend') | ||
testCompile project(':backend').sourceSets.test.output | ||
//testCompile "org.springframework.boot:spring-boot-starter-data-jpa" | ||
testCompile "org.springframework.boot:spring-boot-starter-test" | ||
testCompile "org.spockframework:spock-core:1.1-groovy-2.4" | ||
testCompile "org.spockframework:spock-spring:1.1-groovy-2.4" | ||
} |
Binary file added
BIN
+16 Bytes
...es/META-INF/edu.internet2.tier.shibboleth.admin.ui.envers-tests-module.main.kotlin_module
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
include 'backend', 'ui', 'pac4j-module' | ||
include 'backend', 'ui', 'pac4j-module', 'envers-tests-module' |