removed warnings about unused variables
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@618065 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
aeb5d7f5f1
commit
3a6575922a
|
@ -78,7 +78,7 @@ public class OneWayAnovaTest extends TestCase {
|
|||
wrongContents.add(classC);
|
||||
wrongContents.add(wrongArray);
|
||||
try {
|
||||
double bad = testStatistic.anovaFValue(wrongContents);
|
||||
testStatistic.anovaFValue(wrongContents);
|
||||
fail("non double[] hash value for key classX, IllegalArgumentException expected");
|
||||
} catch (IllegalArgumentException ex) {
|
||||
// expected
|
||||
|
@ -88,7 +88,7 @@ public class OneWayAnovaTest extends TestCase {
|
|||
emptyContents.add(emptyArray);
|
||||
emptyContents.add(classC);
|
||||
try {
|
||||
double bad = testStatistic.anovaFValue(emptyContents);
|
||||
testStatistic.anovaFValue(emptyContents);
|
||||
fail("empty array for key classX, IllegalArgumentException expected");
|
||||
} catch (IllegalArgumentException ex) {
|
||||
// expected
|
||||
|
@ -97,7 +97,7 @@ public class OneWayAnovaTest extends TestCase {
|
|||
List tooFew = new ArrayList();
|
||||
tooFew.add(classA);
|
||||
try {
|
||||
double bad = testStatistic.anovaFValue(tooFew);
|
||||
testStatistic.anovaFValue(tooFew);
|
||||
fail("less than two classes, IllegalArgumentException expected");
|
||||
} catch (IllegalArgumentException ex) {
|
||||
// expected
|
||||
|
|
Loading…
Reference in New Issue