You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 10, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,7 @@ class KubeApiServerTest {
84
84
85
85
### Fabric8 Kubernetes Client Support
86
86
87
-
There is a dedicated support for [Fabric8 Kubernetes Client](https://github.com/fabric8io/kubernetes-client).
87
+
There is dedicated support for [Fabric8 Kubernetes Client](https://github.com/fabric8io/kubernetes-client).
88
88
89
89
Using dependency:
90
90
@@ -110,6 +110,12 @@ class JUnitFabric8ClientInjectionTest {
110
110
}
111
111
```
112
112
113
+
### Support for Parallel Execution in Junit5
114
+
115
+
Parallel test execution is explicitly supported for JUnit5, in fact the project tests are running parallel.
116
+
Running a new instance for each test case. This speeds up the tests (in our case >75%) in a way that test cases are also
117
+
fully isolated from each other. See the [surefire plugin config](https://github.com/csviri/jenvtest/blob/6bb0510208d33cc64938b7a4518ecd0c21de8b26/pom.xml#L222-L237).
118
+
113
119
### Testing Mutation and Validation Webhooks
114
120
115
121
An additional benefits os running K8S API Server this way, is that it makes easy to test
0 commit comments