Skip to content

Instantly share code, notes, and snippets.

@brianhsu
Created April 8, 2018 02:49
Show Gist options
  • Select an option

  • Save brianhsu/cb2bdd9f496da176d05be8f31d333cc7 to your computer and use it in GitHub Desktop.

Select an option

Save brianhsu/cb2bdd9f496da176d05be8f31d333cc7 to your computer and use it in GitHub Desktop.
trait DynamicDataGenerator {
def randomUUID: UUIDGenerator
def currentTime: CurrentTimeGenerator
}
trait UUIDGenerator {
def uuid: UUID
}
trait CurrentTimeGenerator {
def time: LocalDateTime
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment