mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 08:53:20 +00:00
Wraps TestTextPanel for TestFmwk.
X-SVN-Rev: 1235
This commit is contained in:
parent
3f0c7da3c8
commit
d53240de34
2 changed files with 124 additions and 0 deletions
62
icu4j/src/com/ibm/richtext/test/unit/FmwkTestTextPanel.java
Executable file
62
icu4j/src/com/ibm/richtext/test/unit/FmwkTestTextPanel.java
Executable file
|
@ -0,0 +1,62 @@
|
|||
/*
|
||||
* @(#)$RCSfile: FmwkTestTextPanel.java,v $ $Revision: 1.1 $ $Date: 2000/04/24 21:10:58 $
|
||||
*
|
||||
* (C) Copyright IBM Corp. 1998-1999. All Rights Reserved.
|
||||
*
|
||||
* The program is provided "as is" without any warranty express or
|
||||
* implied, including the warranty of non-infringement and the implied
|
||||
* warranties of merchantibility and fitness for a particular purpose.
|
||||
* IBM will not be liable for any damages suffered by you as a result
|
||||
* of using the Program. In no event will IBM be liable for any
|
||||
* special, indirect or consequential damages or lost profits even if
|
||||
* IBM has been advised of the possibility of their occurrence. IBM
|
||||
* will not be liable for any third party claims against you.
|
||||
*/
|
||||
package com.ibm.test.richtext;
|
||||
|
||||
import com.ibm.test.TestFmwk;
|
||||
import com.ibm.richtext.tests.TestTextPanel;
|
||||
|
||||
public final class FmwkTestTextPanel extends TestFmwk {
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
|
||||
new FmwkTestTextPanel().run(args);
|
||||
}
|
||||
|
||||
private TTP ttp;
|
||||
|
||||
public FmwkTestTextPanel() {
|
||||
|
||||
ttp = new TTP();
|
||||
}
|
||||
|
||||
public void test() {
|
||||
|
||||
ttp.test();
|
||||
// If TestTextPanel gets more tests, add them here
|
||||
}
|
||||
|
||||
protected void errln(String message) {
|
||||
|
||||
super.errln(message);
|
||||
}
|
||||
|
||||
protected void logln(String message) {
|
||||
|
||||
super.logln(message);
|
||||
}
|
||||
|
||||
private final class TTP extends TestTextPanel {
|
||||
|
||||
protected void reportError(String message) {
|
||||
|
||||
errln(message);
|
||||
}
|
||||
|
||||
protected void logMessage(String message) {
|
||||
|
||||
logln(message);
|
||||
}
|
||||
}
|
||||
}
|
62
icu4j/src/com/ibm/test/richtext/FmwkTestTextPanel.java
Executable file
62
icu4j/src/com/ibm/test/richtext/FmwkTestTextPanel.java
Executable file
|
@ -0,0 +1,62 @@
|
|||
/*
|
||||
* @(#)$RCSfile: FmwkTestTextPanel.java,v $ $Revision: 1.1 $ $Date: 2000/04/24 21:10:58 $
|
||||
*
|
||||
* (C) Copyright IBM Corp. 1998-1999. All Rights Reserved.
|
||||
*
|
||||
* The program is provided "as is" without any warranty express or
|
||||
* implied, including the warranty of non-infringement and the implied
|
||||
* warranties of merchantibility and fitness for a particular purpose.
|
||||
* IBM will not be liable for any damages suffered by you as a result
|
||||
* of using the Program. In no event will IBM be liable for any
|
||||
* special, indirect or consequential damages or lost profits even if
|
||||
* IBM has been advised of the possibility of their occurrence. IBM
|
||||
* will not be liable for any third party claims against you.
|
||||
*/
|
||||
package com.ibm.test.richtext;
|
||||
|
||||
import com.ibm.test.TestFmwk;
|
||||
import com.ibm.richtext.tests.TestTextPanel;
|
||||
|
||||
public final class FmwkTestTextPanel extends TestFmwk {
|
||||
|
||||
public static void main(String[] args) throws Exception {
|
||||
|
||||
new FmwkTestTextPanel().run(args);
|
||||
}
|
||||
|
||||
private TTP ttp;
|
||||
|
||||
public FmwkTestTextPanel() {
|
||||
|
||||
ttp = new TTP();
|
||||
}
|
||||
|
||||
public void test() {
|
||||
|
||||
ttp.test();
|
||||
// If TestTextPanel gets more tests, add them here
|
||||
}
|
||||
|
||||
protected void errln(String message) {
|
||||
|
||||
super.errln(message);
|
||||
}
|
||||
|
||||
protected void logln(String message) {
|
||||
|
||||
super.logln(message);
|
||||
}
|
||||
|
||||
private final class TTP extends TestTextPanel {
|
||||
|
||||
protected void reportError(String message) {
|
||||
|
||||
errln(message);
|
||||
}
|
||||
|
||||
protected void logMessage(String message) {
|
||||
|
||||
logln(message);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue