move tests to separate project

This commit is contained in:
Hannes Janetzek
2014-03-29 12:54:12 +01:00
parent f75702a575
commit 2bf5313c2b
7 changed files with 24 additions and 13 deletions

15
vtm-tests/build.gradle Normal file
View File

@@ -0,0 +1,15 @@
apply plugin: 'java'
apply plugin: 'maven'
dependencies {
compile project(':vtm')
testCompile 'junit:junit:4.11'
testCompile 'org.mockito:mockito-all:1.9.5'
testCompile 'org.easytesting:fest-assert-core:2.0M10'
testCompile 'com.squareup.okhttp:mockwebserver:1.5.2'
}
sourceSets {
main.java.srcDirs = ['src']
test.java.srcDirs = ['test']
}