@Test
public void testDoRun() {
FactorCategory fc1st = (FactorCategory) factorTable.getEntries().get(0);
Factor factor1st = (Factor) fc1st.getChildren().get(1);
new SetFactorNameCommand(factor1st,"new name for foo factor").runWithoutUnicaseCommand();
assertEquals("new name for foo factor", factor1st.getName());
}