CodyEngel / fakek

A faker library for Kotlin.
Apache License 2.0
7 stars 6 forks source link

Add Fake Lorem #44

Open CodyEngel opened 3 years ago

CodyEngel commented 3 years ago

Add a FakeLorem instance to FakeContext. Please ensure that new properties are added in alphabetical order and well documented.

Here are points of reference from the Faker library:

val lorem = faker.lorem()
lorem.paragraphs(3)
lorem.paragraph()
lorem.sentence(5)

This will break from normal conventions as the lorem instance will act as a factory for creating strings of text. Assigning this to myself so I can work on establishing a pattern for this style of fake.

Caps-Looking commented 3 years ago

Hey @CodyEngel can I work with that?