blob: 34040e489fecf65c5486d8c5f5177ffe1773b1f6 [file] [log] [blame]
/*******************************************************************************
* 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.utility.tests.internal;
/**
* Command that can be used to execute tests; i.e. a command that allows its
* implementation to throw exceptions.
*/
public interface TestCommand {
void execute() throws Exception;
}