public void testValueCanBeChanged() {
    RoundToCell cell = new RoundToCell();
    cell.valueChanged(3);

    JSettings settings = (JSettings) JSettingsStore.instance().first();
    Assert.assertEquals(settings.roundTo, BigDecimals.parse("2.5"));
  }