File: extTest.gradle

package info (click to toggle)
mockito 3.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,068 kB
  • sloc: java: 48,664; xml: 48; makefile: 5
file content (23 lines) | stat: -rw-r--r-- 657 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
apply from: "$rootDir/gradle/dependencies.gradle"

apply plugin: 'java'
description = "End-to-end tests for Mockito and its extensions."

repositories {
    mavenLocal() //we depend on locally published mockito
}

dependencies {
    testCompile project.rootProject
    testCompile project(":junit-jupiter")
    testCompile project(path: ':', configuration: 'testUtil')
    testCompile libraries.junit4
    testCompile libraries.assertj
    testCompile libraries.junitJupiterApi
}

configurations.all {
    //TODO SF enable when #154 is implemented
    //let's make those tests not use hamcrest
    //exclude group: 'org.hamcrest', module: 'hamcrest-core'
}