autoparams.kotlin.AutoKotlinSource.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of autoparams-kotlin Show documentation
Show all versions of autoparams-kotlin Show documentation
A Kotlin-specific addition to the AutoParams library, allowing for the automated generation of random parameters for unit testing in Kotlin. This extension is designed to leverage Kotlin's unique features for more powerful and flexible test data generation.
package autoparams.kotlin
import autoparams.AutoSource
import autoparams.customization.Customization
@Target(AnnotationTarget.ANNOTATION_CLASS, AnnotationTarget.FUNCTION)
@Retention(AnnotationRetention.RUNTIME)
@AutoSource
@Customization(KotlinCustomizer::class)
annotation class AutoKotlinSource