From 8354119e3c4673682cfe1c3ce59aa83a19f7d08b Mon Sep 17 00:00:00 2001
From: buildmaster
Make sure that regex matches a whole region of a sequence as internally a call to
+Pattern.matches()
+is called. For instance, abc pattern doesn’t match aabc string but .abc does.
+There are several additional known limitations as well.
The following example shows how to use regular expressions to write a request:
| + + | +
+Due to certain limitations of Xeger library that generates string out of
+regex, do not use $ and ^ signs in your regex if you rely on automatic
+generation. Issue 899
+ |
+
| + + | +
+Do not use LocalDate instance as a value for $ like this $(consumer(LocalDate.now())).
+It causes java.lang.StackOverflowError. Use $(consumer(LocalDate.now().toString())) instead.
+Issue 900
+ |
+