blob: 2b41e2bc68ed9f0d433f2850e2be48ba0ae7d46f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 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.jdt.debug.tests.launching;
import org.eclipse.debug.internal.ui.DebugUIPlugin;
import org.eclipse.jdt.debug.tests.AbstractDebugTest;
/**
* Tests accelerator adjustments for DBCS languages.
* See bug 186921.
*
* @since 3.3
*/
public class AcceleratorSubstitutionTests extends AbstractDebugTest {
/**
* Constructor
* @param name the name of the test
*/
public AcceleratorSubstitutionTests(String name) {
super(name);
}
/**
* tests a string with "..."
*/
public void testWithEllipses() {
assertEquals("incorrect DBCS accelerator substitution",
"Open Run Dialog(&R)...",
DebugUIPlugin.adjustDBCSAccelerator("Open Run(&R) Dialog..."));
}
/**
* tests a string without "..."
*/
public void testWithoutEllipses() {
assertEquals("incorrect DBCS accelerator substitution",
"Open Run Dialog(&R)",
DebugUIPlugin.adjustDBCSAccelerator("Open Run(&R) Dialog"));
}
/**
* tests a string that should not change (no DBCS style accelerator).
*/
public void testWithoutDBCSAcclerator() {
assertEquals("incorrect DBCS accelerator substitution",
"Open &Run Dialog...",
DebugUIPlugin.adjustDBCSAccelerator("Open &Run Dialog..."));
}
}