private static Test getSuite() {
BaseTestSuite suite = new BaseTestSuite("localized Display");
Properties uiProps = new Properties();
uiProps.put("derby.ui.locale","es_AR");
uiProps.put("derby.ui.codeset", ENCODING);
suite.addTest(new TimeZoneTestSetup(new SystemPropertyTestSetup(
new LocalizedDisplayScriptTest("LocalizedDisplay"), uiProps),
"America/Los_Angeles"));
return getIJConfig(suite);
}