blob: 41fa0c876b2a8e24edf01d5c14c073fc5382ea7f (
plain)
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
|
package com.vaadin.tests.tb3;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Future;
import org.junit.runners.model.RunnerScheduler;
/**
* JUnit scheduler capable of running multiple tets in parallel. Each test is
* run in its own thread. Uses an {@link ExecutorService} to manage the threads.
*
* @author Vaadin Ltd
*/
public class ParallelScheduler implements RunnerScheduler {
private final List<Future<Object>> fResults = new ArrayList<>();
private ExecutorService fService;
/**
* Creates a parallel scheduler which will use the given executor service
* when submitting test jobs.
*
* @param service
* The service to use for tests
*/
public ParallelScheduler(ExecutorService service) {
fService = service;
}
@Override
public void schedule(final Runnable childStatement) {
fResults.add(fService.submit(() -> {
childStatement.run();
return null;
}));
}
@Override
public void finished() {
for (Future<Object> each : fResults) {
try {
each.get();
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
|