// you have to move the weights a lot to change the outcome of the alternatives
// (0.19->0.51 and 0.81->0.49), this means the weighting is stable
sf1.setWeight(0.19);
sf2.setWeight(0.81);
ResultNode resultRoot = new ResultNode(root, new WeightedSum(), alternatives);
resultRoot.analyseSensitivity(weightModifier,
SensitivityAnalysisTestFactory.getSensitivityTest(root, new WeightedSum(), alternatives));
assert(!resultRoot.isSensitive());
}