use of org.eclipse.jface.dialogs.Dialog in project eclipse.platform.ui by eclipse-platform.
the class DeprecatedUIPreferences method testDefaultTextEditorPref.
@Test
public void testDefaultTextEditorPref() {
Dialog dialog = getPreferenceDialog("org.eclipse.ui.preferencePages.TextEditor");
DialogCheck.assertDialog(dialog);
}
use of org.eclipse.jface.dialogs.Dialog in project eclipse.platform.ui by eclipse-platform.
the class DeprecatedUIPreferences method testInfoProp.
@Test
public void testInfoProp() {
Dialog dialog = getPropertyDialog("org.eclipse.ui.propertypages.info.file");
DialogCheck.assertDialog(dialog);
}
use of org.eclipse.jface.dialogs.Dialog in project eclipse.platform.ui by eclipse-platform.
the class DeprecatedUIPreferences method testWorkbenchPref.
@Test
public void testWorkbenchPref() {
Dialog dialog = getPreferenceDialog("org.eclipse.ui.preferencePages.Workbench");
DialogCheck.assertDialog(dialog);
}
use of org.eclipse.jface.dialogs.Dialog in project eclipse.platform.ui by eclipse-platform.
the class DeprecatedUIPreferencesAuto method testFontEditorsPref.
// Only really checking if this opens without an exception
@Test
public void testFontEditorsPref() {
Dialog dialog = getPreferenceDialog("org.eclipse.ui.tests.dialogs.FontFieldEditorTestPreferencePage");
DialogCheck.assertDialogTexts(dialog);
}
use of org.eclipse.jface.dialogs.Dialog in project eclipse.platform.ui by eclipse-platform.
the class DeprecatedUIPreferencesAuto method testPerspectivesPref.
@Test
public void testPerspectivesPref() {
Dialog dialog = getPreferenceDialog("org.eclipse.ui.preferencePages.Perspectives");
DialogCheck.assertDialogTexts(dialog);
}
Aggregations