Skip to main content
summaryrefslogtreecommitdiffstats
blob: dabee32d4f38e10375540471e891a8f62f718ef6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*******************************************************************************
 * Copyright (c) 2013 Tasktop Technologies 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:
 *     Tasktop Technologies - initial API and implementation
 *******************************************************************************/

package org.eclipse.mylyn.tests.util;

import org.eclipse.mylyn.internal.tasks.core.util.ContributorBlackList;
import org.eclipse.mylyn.internal.tasks.ui.util.TasksUiExtensionReader;

/**
 * @author Steffen Pingel
 */
public class TasksUiTestUtil {

	/**
	 * Ensures that connector UI extensions are registered (see bug 400370).
	 */
	public static void ensureTasksUiInitialization() {
		TasksUiExtensionReader.initWorkbenchUiExtensions(new ContributorBlackList());
	}

}

Back to the top