f2.set(view, eList);
((ValueModel)view).clearModel();
manifestation.updateFromFeed(data);
JLabelFixture labelFixture = new Query().labelIn(fixture);
labelFixture.requireText("1");
JRadioButtonFixture buttonA = new Query().accessibleNameMatches("Alpha Value: ").radioButtonIn(fixture);
buttonA.check();
manifestation.updateFromFeed(data);
JTableCellFixture cell = tableFixture.cell(row(0).column(2));
JTableCellFixture cell2 = tableFixture.cell(row(1).column(2));
cell.requireValue("1");
cell2.requireValue("1");
buttonA.uncheck();
JRadioButtonFixture buttonI = new Query().accessibleNameMatches("Test Value: ").radioButtonIn(fixture);
buttonI.check();
JTextComponentFixture textFixture = new Query().textBoxIn(fixture);
textFixture.enterText("2");
manifestation.updateFromFeed(data);
cell.requireValue("2");
cell2.requireValue("2");