Closedown
This commit is contained in:
@@ -132,21 +132,13 @@ public class TestingList extends Panel {
|
||||
|
||||
//enumeration of possible test statuses: text and related icon
|
||||
public enum TestStatus {
|
||||
SUCCESS (0),
|
||||
FAILURE (1),
|
||||
PENDING (2),
|
||||
DISABLED (3),
|
||||
RUNNING (4);
|
||||
SUCCESS,
|
||||
FAILURE,
|
||||
PENDING,
|
||||
DISABLED,
|
||||
RUNNING;
|
||||
|
||||
private int value;
|
||||
|
||||
private TestStatus(int value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public int index(){
|
||||
return (int) value;
|
||||
}
|
||||
|
||||
public String IconFilename(){
|
||||
String iconFileName = "";
|
||||
|
||||
Reference in New Issue
Block a user