pip-services3-commons-node
Version:
Portable abstractions and patterns for Pip.Services in Node.js
19 lines (18 loc) • 652 B
TypeScript
/**
* @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';