io.github.orange-3.unit-test-architect
Owner: Rahul Choudhary
Unit Test Architect is an open source gradle plugin that helps you to automatically generate test cases of kotlin/java files using jUnit + Mockito.
https://github.com/OrangE-3/UnitTestArchitect
Sources: https://github.com/OrangE-3/UnitTestArchitect.git
Version 1.1.1 (latest)
1.1.1
Created 25 January 2022.
Unit Test Architect is an open source gradle plugin that helps you to automatically generate test cases of kotlin/java files using jUnit + Mockito.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.orange-3.unit-test-architect") version "1.1.1"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.orange-3:unit-test-architect:1.1.1") } } apply(plugin = "io.github.orange-3.unit-test-architect")
- Applying plugins to all subprojects .