blob: 7a1d0ba48da3af5432783ca0ad3973a493384447 [file] [log] [blame]
package org.eclipse.debug.jdi.tests;
/**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. All rights reserved.
This file is made available under the terms of the Common Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v10.html
**********************************************************************/
import com.sun.jdi.request.BreakpointRequest;
/**
* Tests for JDI com.sun.jdi.request.BreakpointRequest.
*/
public class BreakpointRequestTest extends AbstractJDITest {
private BreakpointRequest fRequest;
/**
* Creates a new test .
*/
public BreakpointRequestTest() {
super();
}
/**
* Init the fields that are used by this test only.
*/
public void localSetUp() {
// Get the breakpoint request
fRequest = getBreakpointRequest();
}
/**
* Make sure the test leaves the VM in the same state it found it.
*/
public void localTearDown() {
// Delete the breakpoint request we created in this test
fVM.eventRequestManager().deleteEventRequest(fRequest);
}
/**
* Run all tests and output to standard output.
*/
public static void main(java.lang.String[] args) {
new BreakpointRequestTest().runSuite(args);
}
/**
* Gets the name of the test case.
*/
public String getName() {
return "com.sun.jdi.request.BreakpointRequest";
}
/**
* Test JDI location().
*/
public void testJDILocation() {
assertEquals("1", getLocation(), fRequest.location());
}
}