there should be one in io.kotlintest.properties or...
# kotlintest
s
there should be one in io.kotlintest.properties or something like that
j
Thanks, that was the one
s
đŸ‘đŸ»
j
Can I get it to start with a specific value?
s
you want to set the seed ?
j
Like instead of starting with 0 start with 1
s
it’s random
it’ll do 0, 1, -1, then random
j
Oh ok
What if I want sequential? 🙂
s
You could make a custom Gen
object : Gen<Int> { 
 fun random() = listOf(1,2,3,4,5).toSequence() }
j
Thank you kindly