com.blogspot.toomuchcoding.testprofiler
这个插件的想法是对您的测试进行性能分析。您将能够以降序排列查看测试执行时间,并显示执行测试的模块和类名。
https://github.com/marcingrzejszczak/gradle-test-profiler
使用 插件 DSL
plugins {
id("com.blogspot.toomuchcoding.testprofiler") version "0.3.2"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.blogspot.toomuchcoding:gradle-test-profiler:0.3.2")
}
}
apply(plugin = "com.blogspot.toomuchcoding.testprofiler")
使用 插件 DSL
plugins {
id "com.blogspot.toomuchcoding.testprofiler" version "0.3.2"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.blogspot.toomuchcoding:gradle-test-profiler:0.3.2"
}
}
apply plugin: "com.blogspot.toomuchcoding.testprofiler"