Skip to content

Commit 1ba2f25

Browse files
committed
Merge pull request #148 from mperry/issue147
Split quickcheck property testing into separate module to address #147
2 parents fdc4c5f + d57372b commit 1ba2f25

File tree

73 files changed

+35
-8
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+35
-8
lines changed

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 != "props-core" }) {
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
}
File renamed without changes.

tests/src/main/scala/fj/control/parallel/ArbitraryParModule.scala renamed to props-core-scalacheck/src/main/scala/fj/control/parallel/ArbitraryParModule.scala

File renamed without changes.

tests/src/main/scala/fj/control/parallel/ArbitraryStrategy.scala renamed to props-core-scalacheck/src/main/scala/fj/control/parallel/ArbitraryStrategy.scala

File renamed without changes.

tests/src/main/scala/fj/data/ArbitraryArray.scala renamed to props-core-scalacheck/src/main/scala/fj/data/ArbitraryArray.scala

File renamed without changes.

tests/src/main/scala/fj/data/ArbitraryHashMap.scala renamed to props-core-scalacheck/src/main/scala/fj/data/ArbitraryHashMap.scala

File renamed without changes.

tests/src/main/scala/fj/data/ArbitraryHashSet.scala renamed to props-core-scalacheck/src/main/scala/fj/data/ArbitraryHashSet.scala

File renamed without changes.

0 commit comments

Comments
 (0)