xgouchet / Elmyr

A utility to make Kotlin/Java tests random yet reproducible
Other
82 stars 2 forks source link

Add doc sample to create custom forgeries #11

Closed xgouchet closed 4 years ago

xgouchet commented 5 years ago

eg :

fun Forger.aUser() : User {
  return User(
      id = anHexadecimalString(),
      name = aSentence()
  )
}