Package-level declarations
Types
Link copied to clipboard
annotation class DoubleRangeSource(val min: Double, val max: Double, val increment: Double = 0.5, val ascending: Boolean = true)
Link copied to clipboard
Annotation to indicate that the annotated double parameter should be populated with a random value from the provided values array.
Link copied to clipboard
annotation class FloatRangeSource(val min: Float, val max: Float, val increment: Float = 0.5f, val ascending: Boolean = true)
Link copied to clipboard
Annotation to indicate that the annotated float parameter should be populated with a random value from the provided values array.
Link copied to clipboard
annotation class IntRangeSource(val min: Int, val max: Int, val increment: Int = 1, val ascending: Boolean = true)
Link copied to clipboard
annotation class LongRangeSource(val min: Long, val max: Long, val increment: Long = 1, val ascending: Boolean = true)
Link copied to clipboard
Annotation to indicate that the annotated long parameter should be populated with a random value from the provided values array.