alef-e2e 0.15.7

Fixture-driven e2e test generator for alef
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
    @Override public VisitResult {{ camel_method }}({{ params }}) {
{%- if action_type == "skip" %}
        return VisitResult.skip();
{%- elif action_type == "continue" %}
        return VisitResult.continue_();
{%- elif action_type == "preserve_html" %}
        return VisitResult.preserveHtml();
{%- elif action_type == "custom_literal" %}
        return VisitResult.custom("{{ action_value }}");
{%- elif action_type == "custom_formatted" %}
        return VisitResult.custom(String.format("{{ action_value }}", {{ format_args|join(", ") }}));
{%- endif %}
    }