diff options
author | Ingrid Halama <iha@openoffice.org> | 2010-05-17 13:14:05 +0200 |
---|---|---|
committer | Ingrid Halama <iha@openoffice.org> | 2010-05-17 13:14:05 +0200 |
commit | 4b770dd310a1e1b37abd1728abc2e21f3fb3f129 (patch) | |
tree | 2b6486c4cdf4557bfee5d204f9fc0e1c1e865d75 /qadevOOo | |
parent | 6417e0a10e9f7ad16342af2ed7f5ff23c0dba036 (diff) |
chart47: #i111560# report error if a property is not set and is not MAYBEVOID
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/runner/lib/MultiPropertyTest.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/qadevOOo/runner/lib/MultiPropertyTest.java b/qadevOOo/runner/lib/MultiPropertyTest.java index 3a12d51c0d92..a02f93c04347 100644 --- a/qadevOOo/runner/lib/MultiPropertyTest.java +++ b/qadevOOo/runner/lib/MultiPropertyTest.java @@ -191,6 +191,12 @@ public class MultiPropertyTest extends MultiMethodTest tRes.tested(propName, true); return; } + else + { + log.println( "property '"+propName+"' is not set but is not MAYBEVOID"); + tRes.tested(propName, false); + return; + } } Object newValue; |