random length strings within range - #100
Closed
xenoterracide wants to merge 5 commits into
Closed
Conversation
…ar expression These are useful over randomAscii because they do not contain the DEL character but otherwise contrain the full range of ASCII printing characters, and optionally include whitespace. This is useful for testing user defined inputs where characters like spaces, angle brakets, semicolons, dashes, etc, can cause issues.
these methods are useful for testing bound assumption issues
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
at a high level, I have added
randomGraph( int count )andrandomPrint( int count )which map to their corresponding regular expression classes. These are useful if you're needing to test arbitrary user input in various kinds of text fields.randomAsciiwas not sufficient due to it's inclusion of the DEL character.I have also added variants of random Ascii, graph, print, alphabetic, alphanumeric, and numeric that have
minimumInclusiveandmaximumInclusiveparameters. These can be used to create string of random length to ensure more random distribution of data when testing. The will also ensure that developers who use them are less likely to forget testing variable lengths within the bounds.