diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-05-14 09:18:28 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-05-14 09:18:28 +0200 |
commit | 893404cf5e7774ffd9bd6f276586629f9d9d3ae2 (patch) | |
tree | fa0f9b618491b52c722be7bc2858d6e15f57d0a7 /qadevOOo | |
parent | 3abe867790a1a896e30e9887546aef8b9e651b53 (diff) |
Improve test log output
Change-Id: I11afb19726ecf6b585d84517cf2a8244800db81a
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java b/qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java index 1840a857a93e..fd8833b1b89e 100644 --- a/qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java +++ b/qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java @@ -482,6 +482,11 @@ public class _XAccessibleComponent extends MultiMethodTest { result &= (size.Width == bounds.Width); result &= (size.Height == bounds.Height); + if (!result) { + log.println( + "bounds " + bounds.Width + "x" + bounds.Height + " vs. size " + + size.Width + "x" + size.Height); + } tRes.tested("getSize()", result); } @@ -628,4 +633,4 @@ public class _XAccessibleComponent extends MultiMethodTest { } return Covered; } -}
\ No newline at end of file +} |