Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 707 Bytes

generators.md

File metadata and controls

14 lines (10 loc) · 707 Bytes

Generators

This repository contains various random data generators implemented in C++. These generators are useful for creating test data for various applications

Generator Descriptions

  • bgen.cpp: Outputs a random binary string of 100 digits, mostly containing 0's.
  • sgen.cpp: Outputs a random token.
  • igen.cpp: Outputs a random number between 1 and 10^6, inclusive.

Note

  • These generators are part of the testlib library.
  • You can use the custom_gen.cpp to start creating your own generator or modify existing ones to fit your needs.

Feel free to explore and customize the checkers for your projects!