class Currency: YamlFakeDataProvider<Currency>

FakeDataProvider implementation for YamlCategory.CURRENCY category.

Fields

Name Description
protected yamlCategory: override

Category for this fake yaml data provider class.

This is the key entry after the faker key in .yml locale file.

For example address.yml file has the following structure:


en:
  faker:
    address:

then the yamlCategory would be YamlCategory.ADDRESS

NB! If the secondaryCategory is NOT set,the dictionary filename should match the yamlCategory name,i.e. the file name should be address.yml for the YamlCategory.ADDRESS.

protected localUniqueDataProvider: LocalUniqueDataProvider<Currency>

A LocalUniqueDataProvider instance that is used with this unique provider.

val unique: Currency

An instance of T for generating unique values

Methods

code

fun code(): resolve("code")

ReturnValue

Name Description
resolve("code")

name

fun name(): resolve("name")

ReturnValue

Name Description
resolve("name")

symbol

fun symbol(): resolve("symbol")

ReturnValue

Name Description
resolve("symbol")