본문으로 건너뛰기

시작하기

요구사항

  • JDK 1.8 or higher
  • JUnit5

설치하기

Maven

Maven을 사용한다면, pom.xml에 다음 종속성을 추가하세요:

<dependency>
<groupId>io.github.autoparams</groupId>
<artifactId>autoparams</artifactId>
<version>9.0.0</version>
</dependency>

Gradle (Groovy)

Gradle Groovy DSL을 사용한다면, build.gradle에 다음 종속성을 추가하세요:

testImplementation 'io.github.autoparams:autoparams:9.0.0'

Gradle (Kotlin)

Gradle Kotlin DSL을 사용한다면, build.gradle.kts에 다음 종속성을 추가하세요:

testImplementation("io.github.autoparams:autoparams:9.0.0")