Skip to content

Commit

Permalink
#70. Trying something in the direction.
Browse files Browse the repository at this point in the history
  • Loading branch information
curious-odd-man committed May 10, 2023
1 parent 7711288 commit bf8be77
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public void generateInfiniteTest() {
StringIterator stringIterator = rgxGen.iterateUnique();
for (int i = 0; i < 100 && stringIterator.hasNext(); i++) {
String s = stringIterator.next();
System.out.println(".");
assertTrue("Text: '" + s + "'does not match pattern " + aRegex, Pattern.compile(aRegex)
.matcher(s)
.find());
Expand Down

0 comments on commit bf8be77

Please sign in to comment.