UNPKG

pip-services3-commons-nodex

Version:

Portable abstractions and patterns for Pip.Services in Node.js / ES2017

19 lines (18 loc) 677 B
/** * @module random * * Todo: Rewrite this description * * @preferred * Contains implementation of random value generators that are used for * functional as well as non-functional testing. Used to generate random * objects and fill databases with unique objects. */ export { RandomInteger } from './RandomInteger'; export { RandomFloat } from './RandomFloat'; export { RandomDouble } from './RandomDouble'; export { RandomBoolean } from './RandomBoolean'; export { RandomArray } from './RandomArray'; export { RandomDateTime } from './RandomDateTime'; export { RandomString } from './RandomString'; export { RandomText } from './RandomText';