summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/ifc/sheet/_XGoalSeek.java
diff options
context:
space:
mode:
Diffstat (limited to 'qadevOOo/tests/java/ifc/sheet/_XGoalSeek.java')
-rw-r--r--qadevOOo/tests/java/ifc/sheet/_XGoalSeek.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/qadevOOo/tests/java/ifc/sheet/_XGoalSeek.java b/qadevOOo/tests/java/ifc/sheet/_XGoalSeek.java
index 24dad9db4bda..b11a550e3ca3 100644
--- a/qadevOOo/tests/java/ifc/sheet/_XGoalSeek.java
+++ b/qadevOOo/tests/java/ifc/sheet/_XGoalSeek.java
@@ -1,7 +1,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -70,7 +70,7 @@ public class _XGoalSeek extends MultiMethodTest {
if (ex != null) {
throw new StatusException("Could not get a sheet.", ex);
}
-
+
// set value and formula
try {
xSheet.getCellByPosition(3, 4).setValue(9);
@@ -82,7 +82,7 @@ public class _XGoalSeek extends MultiMethodTest {
throw new StatusException("Could not get set formulas on the sheet.", e);
}
}
-
+
public void _seekGoal() {
boolean result = true;
double divergence = 0.01;
@@ -90,7 +90,7 @@ public class _XGoalSeek extends MultiMethodTest {
log.println("Goal Result: " + goal.Result + " Divergence: " + goal.Divergence);
result &= goal.Divergence < divergence;
result &= goal.Result > 16 - divergence || goal.Result < 16 + divergence;
-
+
goal = oObj.seekGoal(aFormula, aValue, "-4");
log.println("Goal Result: " + goal.Result + " Divergence: " + goal.Divergence);
result &= goal.Divergence > 1/divergence;
@@ -106,7 +106,7 @@ public class _XGoalSeek extends MultiMethodTest {
log.println("Goal Result: " + goal.Result + " Divergence: " + goal.Divergence);
result &= goal.Divergence < divergence;
result &= goal.Result > 16 - divergence || goal.Result < 16 + divergence;
-
+
tRes.tested("seekGoal()", result);
}
}