diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2005-02-24 16:22:22 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2005-02-24 16:22:22 +0000 |
commit | d77a8e5c141f96110f70b3744c7db10f2a809c49 (patch) | |
tree | f08a2fd44130aa36ba996dd61af6d3d0a14f718e /qadevOOo | |
parent | c823e4b0e3dc6bff56dcc8c46d43dedb606435d7 (diff) |
INTEGRATION: CWS qadev21 (1.2.14); FILE MERGED
2005/02/18 12:56:42 sw 1.2.14.1: i42888
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/runner/lib/TestResult.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/qadevOOo/runner/lib/TestResult.java b/qadevOOo/runner/lib/TestResult.java index 77168e295449..f7cd27a22365 100644 --- a/qadevOOo/runner/lib/TestResult.java +++ b/qadevOOo/runner/lib/TestResult.java @@ -2,9 +2,9 @@ * * $RCSfile: TestResult.java,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: pjunck $ $Date: 2004-11-02 11:43:46 $ + * last change: $Author: vg $ $Date: 2005-02-24 17:22:22 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -89,6 +89,7 @@ public class TestResult { * @see #tested(String, Status) */ public boolean tested( String method, boolean result) { + System.out.println("Method "+method+" finished with state "+(result?"OK":"FAILED")); return tested( method, Status.passed( result ) ); } |