diff options
-rw-r--r-- | qadevOOo/tests/java/ifc/chart/_ChartAxis.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/qadevOOo/tests/java/ifc/chart/_ChartAxis.java b/qadevOOo/tests/java/ifc/chart/_ChartAxis.java index f63413ebe7cb..8c8e17c65606 100644 --- a/qadevOOo/tests/java/ifc/chart/_ChartAxis.java +++ b/qadevOOo/tests/java/ifc/chart/_ChartAxis.java @@ -184,5 +184,17 @@ public class _ChartAxis extends MultiPropertyTest { testProperty("StepMain", StepMainTester); } + + public void _StepHelp() { + try { + oObj.setPropertyValue("AutoStepMain", Boolean.FALSE); + oObj.setPropertyValue("Logarithmic",Boolean.FALSE); + oObj.setPropertyValue("StepMain", 100.0); + oObj.setPropertyValue("StepHelpCount", 10); + } catch (com.sun.star.uno.Exception e) { + throw new StatusException("Couldn't set property value", e); + } + testProperty("StepHelp"); + } } // finish class _ChartAxis |