blob: 85c5391176ac32380c4b74cad5215efc26952f42 [file] [log] [blame]
package org.eclipse.jdt.debug.tests.core;
/**********************************************************************
Copyright (c) 2000, 2002 IBM Corp. and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Common Public License v0.5
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/cpl-v05.html
Contributors:
IBM Corporation - Initial implementation
*********************************************************************/
import org.eclipse.debug.core.model.ILineBreakpoint;
import org.eclipse.debug.core.model.IVariable;
import org.eclipse.jdt.debug.core.IJavaDebugTarget;
import org.eclipse.jdt.debug.core.IJavaStackFrame;
import org.eclipse.jdt.debug.core.IJavaThread;
import org.eclipse.jdt.debug.tests.AbstractDebugTest;
public class StaticVariableTests extends AbstractDebugTest {
public StaticVariableTests(String name) {
super(name);
}
public void testSetValue() throws Exception {
String typeName = "StaticVariablesTests";
ILineBreakpoint bp = createLineBreakpoint(40, typeName);
IJavaThread thread= null;
try {
thread= launchToLineBreakpoint(typeName, bp);
IJavaStackFrame frame = (IJavaStackFrame)thread.getTopStackFrame();
IVariable pubStr = frame.findVariable("pubStr");
assertNotNull("Could not find variable 'pubStr'", pubStr);
assertEquals("Value should be 'public'","public", pubStr.getValue().getValueString());
pubStr.setValue(((IJavaDebugTarget)frame.getDebugTarget()).newValue("test"));
assertEquals("Value should be 'test'","test", pubStr.getValue().getValueString());
} finally {
terminateAndRemove(thread);
removeAllBreakpoints();
}
}
}