blob: eaacd1d29a241796be412c32fdf0252fd71be4db [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2011 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
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.debug.jdi.tests;
import com.sun.jdi.event.ClassPrepareEvent;
import com.sun.jdi.request.ClassPrepareRequest;
/**
* Tests for JDI com.sun.jdi.event.ClassPrepareEvent.
*/
public class ClassPrepareEventTest extends AbstractJDITest {
private ClassPrepareRequest fRequest;
private ClassPrepareEvent fEvent;
/**
* Creates a new test.
*/
public ClassPrepareEventTest() {
super();
}
/**
* Init the fields that are used by this test only.
*/
@Override
public void localSetUp() {
// Trigger a class prepare event
fRequest = fVM.eventRequestManager().createClassPrepareRequest();
fEvent =
(ClassPrepareEvent) triggerAndWait(fRequest,
"ClassPrepareEvent",
true);
}
/**
* Make sure the test leaves the VM in the same state it found it.
*/
@Override
public void localTearDown() {
// The test has resumed the test thread, so suspend it
waitUntilReady();
// Delete the class prepare request
fVM.eventRequestManager().deleteEventRequest(fRequest);
}
/**
* Run all tests and output to standard output.
* @param args
*/
public static void main(java.lang.String[] args) {
new ClassPrepareEventTest().runSuite(args);
}
/**
* Gets the name of the test case.
* @see junit.framework.TestCase#getName()
*/
@Override
public String getName() {
return "com.sun.jdi.event.ClassPrepareEvent";
}
/**
* Test JDI referenceType().
*/
public void testJDIReferenceType() {
assertEquals(
"1",
"org.eclipse.debug.jdi.tests.program.TestClass",
fEvent.referenceType().name());
}
/**
* Test JDI thread().
*/
public void testJDIThread() {
assertEquals("1", "Test Thread", fEvent.thread().name());
}
}