blob: 62d4c4a8d25b4b641a32a1d417a824994a3a3374 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.tests.session;
import java.util.Locale;
import org.eclipse.ui.IPerspectiveDescriptor;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.tests.navigator.AbstractNavigatorTest;
/**
*
*/
public class LocaleTest extends AbstractNavigatorTest {
public LocaleTest(String testName) {
super(testName);
}
/* (non-Javadoc)
* @see org.eclipse.ui.tests.harness.util.UITestCase#doSetUp()
*/
protected void doSetUp() throws Exception {
super.doSetUp();
createTestFile();
}
public void testLocales() {
Locale[] locales = Locale.getAvailableLocales();
Locale oldLocale = Locale.getDefault();
switchLocale(new Locale("sv"));
for (int i = 0; i < locales.length; i++) {
Locale locale = locales[i];
switchLocale(locale);
}
Locale.setDefault(oldLocale);
}
/**
* @param locale
*/
private void switchLocale(Locale locale) {
Locale.setDefault(locale);
System.out.println(locale.toString());
IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
IPerspectiveDescriptor[] perspectives = PlatformUI.getWorkbench()
.getPerspectiveRegistry().getPerspectives();
for (int j = 0; j < perspectives.length; j++) {
page.setPerspective(perspectives[j]);
}
page.closeAllPerspectives(false, false);
}
}