alef-e2e 0.15.5

Fixture-driven e2e test generator for alef
Documentation
1
2
3
4
5
6
7
8
9
10
11
{#- Java HTTP 101 test skip template

   Context variables:
   - method_name: test method name (UpperCamelCase)
   - description: fixture description
#}
    @Test
    void test{{ method_name }}() {
        // {{ description }}
        org.junit.jupiter.api.Assumptions.assumeTrue(false, "Skipped: Java HttpClient cannot handle 101 Switching Protocols responses");
    }