blob: 4dbf3e0714832701a3b7b1e1da2d77297c6e5d3f [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.ByteValue;
/**
* Tests for JDI com.sun.jdi.ByteValue.
*/
public class ByteValueTest extends AbstractJDITest {
private ByteValue fValue;
/**
* Creates a new test.
*/
public ByteValueTest() {
super();
}
/**
* Init the fields that are used by this test only.
*/
@Override
public void localSetUp() {
// Get byte value for 1
fValue = fVM.mirrorOf((byte) 1);
}
/**
* Run all tests and output to standard output.
* @param args
*/
public static void main(java.lang.String[] args) {
new ByteValueTest().runSuite(args);
}
/**
* Gets the name of the test case.
* @see junit.framework.TestCase#getName()
*/
@Override
public String getName() {
return "com.sun.jdi.ByteValue";
}
/**
* Test JDI equals() and hashCode().
*/
public void testJDIEquality() {
assertTrue("1", fValue.equals(fVM.mirrorOf((byte) 1)));
assertTrue("2", !fValue.equals(fVM.mirrorOf((byte) 2)));
assertTrue("3", !fValue.equals(new Object()));
assertTrue("4", !fValue.equals(null));
assertEquals("5", fValue.hashCode(), fVM.mirrorOf((byte) 1).hashCode());
assertTrue("6", fValue.hashCode() != fVM.mirrorOf((byte) 2).hashCode());
}
/**
* Test JDI value().
*/
public void testJDIValue() {
assertTrue("1", 1 == fValue.value());
}
}