blob: 1f5ecab36fad1f53916ddaafe23533824caef92f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2012 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.core.tests.runtime;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.core.runtime.*;
/**
* Test cases for the Path class.
*/
public class CoreExceptionTest extends RuntimeTest {
/**
* Need a zero argument constructor to satisfy the test harness.
* This constructor should not do any real work nor should it be
* called by user code.
*/
public CoreExceptionTest() {
super(null);
}
public CoreExceptionTest(String name) {
super(name);
}
public static Test suite() {
return new TestSuite(CoreExceptionTest.class);
}
public void testCoreException() {
final String MESSAGE_STRING = "An exception has occurred";
IStatus status = new Status(IStatus.ERROR, "org.eclipse.core.tests.runtime", 31415, MESSAGE_STRING, new NumberFormatException());
CoreException e = new CoreException(status);
assertEquals("1.0", status, e.getStatus());
assertEquals("1.1", MESSAGE_STRING, e.getMessage());
}
}