You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixture.of(DriverImpl.class).addTemplate("valid", new Rule() {{
add("id", new IdFunction());
add("legalId", new LegalIdFunction());
add("firstName", new FirstNameFunction());
add("lastName", new LastNameFunction());
add("username", "${firstName}.${lastName}");
}});
Only the first variable reference is subtitued resulting in a fixture with the following username attribute value: Jansen.${lastName}
The text was updated successfully, but these errors were encountered:
Whe defining a rule as such:
Only the first variable reference is subtitued resulting in a fixture with the following username attribute value:
Jansen.${lastName}
The text was updated successfully, but these errors were encountered: