-
-
Notifications
You must be signed in to change notification settings - Fork 121
/
Hello.feature
62 lines (60 loc) · 2.53 KB
/
Hello.feature
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Feature: Securing the connection between you and the world
@Demo
Scenario Outline: Saying hello to the Server with <client>
Given Server is alive
When I say hello with "<client>"
Then I expect to receive status code 200
And I expect to receive "Hello" message
And I display the time it took to get the message
Examples:
| client |
| Akka HttpClient |
| Apache HttpClient |
| Apache Http Async Client |
| Apache 5 Http Client |
| Apache 5 Http Async Client |
| Async HttpClient |
| Dispatch Reboot HttpClient |
| Feign Apache httpClient |
| Feign Apache 5 httpClient |
| Feign Google httpClient |
| feign JDK Http Client |
| feign Old JDK Http Client |
| Feign OkHttp Client |
| Finagle |
| Fuel |
| Google HttpClient |
| Http4k Apache4 Http Client |
| Http4k Apache4 Async Http Client |
| Http4k Apache5 Http Client |
| Http4k Apache5 Async Http Client |
| Http4k Java Http Client |
| Http4k Jetty Http Client |
| Http4k OkHttp Client |
| Http4s Blaze Client |
| Http4s Java Net Client |
| JDK HttpClient |
| Jersey HttpClient |
| Jetty Reactive HttpClient |
| Apache CXF WebClient |
| Apache CXF JAX-RS |
| Kohttp |
| Ktor Android HttpClient |
| Ktor Apache HttpClient |
| Ktor CIO HttpClient |
| Ktor Java HttpClient |
| Ktor Okhttp HttpClient |
| Methanol |
| OkHttp |
| Old JDK HttpClient |
| Old Jersey HttpClient |
| Reactor Netty |
| Retrofit |
| Requests Scala |
| ScalaJ HttpClient |
| Sttp |
| Spring Rest Template |
| Spring WebFlux WebClient Jetty |
| Spring WebFlux WebClient Netty |
| Unirest |
| Vertx WebClient |