/******************************************************************************* * Copyright (c) 2017 Rogue Wave Software Inc. 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: * Rogue Wave Software Inc. - initial implementation *******************************************************************************/ package org.eclipse.php.phpunit.model.elements; import java.util.Map; import org.eclipse.php.internal.debug.core.zend.debugger.RemoteDebugger; import org.eclipse.php.phpunit.model.connection.PHPUnitMessageParser; public class PHPUnitTest extends PHPUnitElement { public static final int STATUS_STARTED = 0; public static final int STATUS_PASS = 1; public static final int STATUS_SKIP = 2; public static final int STATUS_INCOMPLETE = 3; public static final int STATUS_FAIL = 4; public static final int STATUS_ERROR = 5; protected String name = ""; //$NON-NLS-1$ protected int status = 0; public PHPUnitTest(final Map<?, ?> test, final PHPUnitTestGroup parent, RemoteDebugger remoteDebugger) { super(test, parent, remoteDebugger); if (test == null) { name = ""; //$NON-NLS-1$ } else { name = (String) test.get(PHPUnitMessageParser.PROPERTY_NAME); } } public String getName() { return name; } public int getRunCount() { return 1; } public int getStatus() { return status; } public void setStatus(final int status) { this.status = status; } @Override public String toString() { return file + SEPARATOR_LINE + String.valueOf(line) + SEPARATOR_NAME + name; } }