> Any matcher can be used with any generator, ...
# libpact_ffi-users
r
Any matcher can be used with any generator, no restriction?
Technically, yes, but they should compliment each other, otherwise they won't be useful. For instance if you set a regex matcher with
\d+
and a DateTime generator, that will not make much sense because the generated values will be different to the regex. However, a regex matcher with
\d+
and a RandomInt generator will work well.