Iterable of various configurations to use for tests.
()
| 75 | * Iterable of various configurations to use for tests. |
| 76 | */ |
| 77 | @Parameters(name = "{0}") |
| 78 | public static Iterable<Object[]> data() { |
| 79 | return Arrays.asList(new Object[][] { |
| 80 | {TlsImpl.TCNATIVE}, {TlsImpl.JDK}, {TlsImpl.CONSCRYPT}, |
| 81 | }); |
| 82 | } |
| 83 | |
| 84 | @Parameter(value = 0) |
| 85 | public TlsImpl tlsImpl; |