MoviesFaker
Provides access to fake data generators within the Movies domain.
Usage
Documentation for kotlin-faker is available at serpro69.github.io/kotlin-faker/.
Downloading
Latest releases are always available on maven central.
With gradle
dependencies {
implementation 'io.github.serpro69:kotlin-faker:$version'
implementation 'io.github.serpro69:kotlin-faker-movies:$version'
}
With maven
<dependencies>
<dependency>
<groupId>io.github.serpro69</groupId>
<artifactId>kotlin-faker</artifactId>
<version>${version}</version>
</dependency>
<dependency>
<groupId>io.github.serpro69</groupId>
<artifactId>kotlin-faker-movies</artifactId>
<version>${version}</version>
</dependency>
</dependencies>
NB! An additional fake data provider like 'movies' requires the main kotlin-faker
dependency to be on the classpath.
Generating data
// NB! the package you import if using multiple fakers
import io.github.serpro69.kfaker.movies.faker
val faker = faker { }
faker.departed.actors()
faker.hobbit.characters()
API Documentation: