Skip to content

Commit 71ab66b

Browse files
committed
issue #147: Split property tests into separate component
1 parent fdc4c5f commit 71ab66b

37 files changed

Lines changed: 29 additions & 3 deletions

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ subprojects {
8585
}
8686
}
8787

88-
configure(subprojects) {
88+
configure(subprojects.findAll { it.name != "tests-quickcheck" }) {
8989

9090
apply plugin: "maven"
9191
apply plugin: "signing"

core/src/test/java/fj/data/BooleansTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import fj.F;
44
import fj.function.Booleans;
5-
import fj.test.Property;
65
import org.junit.Assert;
76
import org.junit.Test;
87

demo/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ retrolambda {
1313

1414
dependencies {
1515
compile project(":core")
16+
compile project(":quickcheck")
1617
testCompile dependencyJunit
1718
}

quickcheck/build.gradle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
apply plugin: 'me.tatarka.retrolambda'
3+
4+
retrolambda {
5+
jdk System.getenv("JAVA8_HOME")
6+
oldJdk System.getenv("JAVA7_HOME")
7+
javaVersion JavaVersion.VERSION_1_7
8+
}
9+
10+
dependencies {
11+
compile project(":core")
12+
testCompile dependencyJunit
13+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)