blob: 051d18526d88fadf973e55cc8657ad7378c0d4d3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2016 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.unittest.internal.model;
/**
* Running states of a test.
*/
public enum ProgressState {
/** state that describes that the test element has not started */
NOT_STARTED("Not Started"), //$NON-NLS-1$
/** state that describes that the test element is running */
RUNNING("Running"), //$NON-NLS-1$
/**
* state that describes that the test element has been stopped before being
* completed
*/
ABORTED("Aborted"), //$NON-NLS-1$
/** state that describes that the test element has completed */
COMPLETED("Completed"); //$NON-NLS-1$
private String fName;
private ProgressState(String name) {
fName = name;
}
@Override
public String toString() {
return fName;
}
}