}
@Test
public void collects_all_types_of_run_events() {
RunId runId = new RunId(1);
TestId testId = TestId.of(1);
TestFile testFile = TEST_FILE_1;
toDemuxer.onRunStarted(runId, testFile);
toDemuxer.onTestStarted(runId, testId);
toDemuxer.onFailure(runId, StackTrace.from(new Throwable("dummy")));