alef-e2e 0.15.5

Fixture-driven e2e test generator for alef
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
{#- PHP HTTP test method header

   Context variables:
   - fn_name: sanitized function name (snake_case)
   - description: fixture description
   - skip_reason: optional skip reason (if test is skipped)
#}
    /** {{ description }} */
    public function test_{{ fn_name }}(): void
    {
{%- if skip_reason %}
        $this->markTestSkipped('{{ skip_reason }}');
{%- endif %}