📄 abstracti18ntest.java
字号:
/*--------------------------------------------------------------------------*
| Copyright (C) 2006 Christopher Kohlhaas |
| |
| This program is free software; you can redistribute it and/or modify |
| it under the terms of the GNU General Public License as published by the |
| Free Software Foundation. A copy of the license has been included with |
| these distribution in the COPYING file, if not go to www.fsf.org |
| |
| As a special exception, you are granted the permissions to link this |
| program with every library, which license fulfills the Open Source |
| Definition as published by the Open Source Initiative (OSI). |
*--------------------------------------------------------------------------*/
package org.rapla.components.xmlbundle.tests;
import junit.framework.*;
import java.util.*;
import javax.swing.Icon;
import org.rapla.components.xmlbundle.I18nBundle;
public abstract class AbstractI18nTest extends TestCase {
abstract public I18nBundle getI18n();
public AbstractI18nTest(String name) {
super(name);
}
public void testGetIcon() {
Icon icon = getI18n().getIcon("icon.question");
assertNotNull("returned icon is null",icon);
boolean failed = false;
try {
icon = getI18n().getIcon("this_icon_request_should_fail");
} catch (MissingResourceException ex) {
failed = true;
}
assertTrue(
"Request for 'this_icon_request_should_fail' should throw MissingResourceException"
,failed
);
}
public void testGetString() {
String string = getI18n().getString("cancel");
if (getI18n().getLocale().getLanguage().equals("de"))
assertEquals(string,"Abbrechen");
if (getI18n().getLocale().getLanguage().equals("en"))
assertEquals(string,"cancel");
boolean failed = false;
try {
string = getI18n().getString("this_string_request_should_fail.");
} catch (MissingResourceException ex) {
failed = true;
}
assertTrue(
"Request for 'this_string_request_should_fail should throw MissingResourceException"
,failed
);
}
public void testLocale() {
assertNotNull(getI18n().getLocale());
assertNotNull(getI18n().getLang());
}
public void testXHTML() {
assertTrue(
"<br/> should be replaced with <br>"
,getI18n().getString("error.invalid_key").indexOf("<br>")>=0
);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -