@Test
public void tests_discovered_after_starting_a_run_but_without_root_description_updated() throws Exception {
expect.onTestFound(TestId.ROOT, "DummyTest");
expect.onTestFound(TestId.of(0), "testOne");
expect.onTestFound(TestId.of(1), "testTwo");
expect.onRunStarted(new RunId(1));
expect.onTestStarted(new RunId(1), TestId.ROOT);
expect.onTestStarted(new RunId(1), TestId.of(1));
expect.onTestFinished(new RunId(1), TestId.of(1));
expect.onTestFinished(new RunId(1), TestId.ROOT);
expect.onRunFinished(new RunId(1));
spy.replay();
Description suite = Description.createSuiteDescription(DummyTest.class);
Description testOne = Description.createTestDescription(DummyTest.class, "testOne");