| 1, 2, 4, 5, 6, 7, 8, 9,
1, 2, 4, 5, 6, 7, 8, 9, 10
}), stat.getValues());
stat.setValues(vOrg);
stat.removeValues(new Double(3.5), new Double(4.5));
Assert.assertEquals(asList(new double[]{
1, 2, 3, 5,
1, 2, 3, 5, 6,
1, 2, 3, 5, 6, 7,
1, 2, 3, 5, 6, 7, 8,
|