Skip to content

Commit ba76586

Browse files
committed
Extract reusable test utilities out into separate project.
This allows them to be properly shared and tested, and this configuration maps to IDEs better.
1 parent 2cda411 commit ba76586

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
dependencies {
2-
testCompile project(":rxjava-core").sourceSets.test.output
2+
testCompile project(":rxjava-test")
33
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
dependencies {
2-
testCompile project(":rxjava-core").sourceSets.test.output
2+
testCompile project(":rxjava-test")
33
}

rxjava-core/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
apply plugin: 'maven'
22

33
dependencies {
4-
testCompile 'junit:junit-dep:4.10'
5-
testCompile 'org.mockito:mockito-core:1.8.5'
4+
testCompile project(":rxjava-test")
65
}
76

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
rootProject.name = 'rxjava'
22

33
include 'rxjava-core',
4+
'rxjava-test',
45
'language-adaptors:rxjava-groovy',
56
'language-adaptors:rxjava-clojure',
67
'language-adaptors:rxjava-jruby',

0 commit comments

Comments
 (0)