Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5c22a753186f3f11cf30d098cc8e797e54bfcd14 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*******************************************************************************
 * Copyright (c) 2012 Oracle. 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:
 *     Oracle - initial API and implementation
 ******************************************************************************/
package org.eclipse.jpt.common.core.tests;

import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;

/**
 * Various tools that can be used by test cases.
 */
@SuppressWarnings("nls")
public final class CoreTestTools {

	/**
	 * Delete the specified project, making multiple attempts because open
	 * files etc. can prevent a project from being deleted.
	 */
	public static void delete(IProject project) throws Exception {
		int i = 0;
		boolean deleted = false;
		while ( ! deleted) {
			try {
				project.delete(true, true, null);
				deleted = true;
			} catch (CoreException ex) {
				if (i == 3) {
					throw new RuntimeException("unable to delete project: " + project.getName(), ex);
				}
				Thread.sleep((1 << i) * 1000);
				i++;
			}
		}
	}

	/**
	 * suppressed constructor
	 */
	private CoreTestTools() {
		super();
		throw new UnsupportedOperationException();
	}
}

Back to the top