blob: 16f0ed8059756b8f8723c581aa7745d9be49c30b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2020 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.jdt.text.tests.contentassist;
import org.junit.Test;
import org.eclipse.jdt.ui.PreferenceConstants;
/**
*
* @since 3.2
*/
public class MethodOverwriteCompletionTest extends AbstractCompletionTest {
/*
* @see org.eclipse.jdt.text.tests.contentassist.AbstractCompletionTest#setUp()
*/
@Override
public void setUp() throws Exception {
super.setUp();
getJDTUIPrefs().setValue(PreferenceConstants.CODEASSIST_INSERT_COMPLETION, false);
}
@Test
public void testThisMethod() throws Exception {
assertMethodBodyProposal("this.|", "hashCode(", "this.hashCode()|");
}
@Test
public void testMethod() throws Exception {
assertMethodBodyProposal("h", "hashCode(", "hashCode()");
}
@Test
public void testMethodWithParam() throws Exception {
assertMethodBodyProposal("e", "equals(", "equals(|)");
}
/* overwriting */
@Test
public void testOverwriteThisMethod() throws Exception {
assertMethodBodyProposal("this.|class", "hashCode(", "this.hashCode()|");
}
@Test
public void testOverwriteMethod() throws Exception {
assertMethodBodyProposal("h|foobar", "hashCode(", "hashCode()|");
}
@Test
public void testOverwriteMethodWithParam() throws Exception {
assertMethodBodyProposal("e|foobar", "equals(", "equals(|)");
}
}