blob: 5437585dc277adfd6c0222650575896a2fe0a89c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2005 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
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jem.tests.proxy.initParser;
/*
* $RCSfile: OverloadingTest.java,v $
* $Revision: 1.7 $ $Date: 2005/08/24 20:58:54 $
*/
/**
* Test that correct overloaded method is called.
* @author jmyers
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class OverloadingTest extends AbstractInitParserTestCase {
/**
* Constructor for OverloadingTest.
* @param name
*/
public OverloadingTest(String name) {
super(name);
}
public void testOverloadString() throws Throwable {
testHelper.testInitString("new Integer(\"3\")", new Integer(3));
}
public void testOverloadShort() throws Throwable {
testHelper.testInitString("new Integer(5)", new Integer(5));
}
}