PopulationData<BigDecimal> data1 = new PopulationData<BigDecimal>(BigDecimal.TEN, 10, 5, 2, true, 5, 0, 1, 100);
// Render the first time.
view.populationUpdate(data1);
robot.waitForIdle();
JTextComponent component1 = frameFixture.textBox().component();
// Render the same candidate for the second generation.
PopulationData<BigDecimal> data2 = new PopulationData<BigDecimal>(BigDecimal.TEN, 10, 5, 2, true, 5, 0, 2, 100);
view.populationUpdate(data2);
robot.waitForIdle();