File: memory-test.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 (19 lines) | stat: -rw-r--r-- 350 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
plugins {
    id 'java'
}
description = "Test suite memory usage of Mockito"

apply from: "$rootDir/gradle/dependencies.gradle"

dependencies {
    compile project.rootProject
    testCompile libraries.junit4
    testCompile libraries.assertj
}

tasks.javadoc.enabled = false

test {
    maxHeapSize = "128m"
    jvmArgs = ["-XX:MaxPermSize=128m"]
}