blob: 9d8a244aad7a7f2dcbc12137f59e7069cbdb741b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2016 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
* Red Hat, Inc. - refactoring
*******************************************************************************/
package org.eclipse.wst.jsdt.ui.tests.contentassist;
import org.eclipse.wst.jsdt.ui.tests.utils.TestProjectSetup;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
@SuppressWarnings("nls")
public class AlreadyDefinedFunctionAssingedToFieldTests {
private static TestProjectSetup fTestProjectSetup;
@BeforeClass
public static void setup() throws Exception {
fTestProjectSetup = new TestProjectSetup("ContentAssist", "root", false);
fTestProjectSetup.setUp();
}
@AfterClass
public static void tearDown() throws Exception {
fTestProjectSetup.tearDown();
}
@Ignore @Test
public void testAlreadyDefinedFunctionAssingedToField_OtherFile_BeforeOpen_0() throws Exception {
String[][] expectedProposals = new String[][] { {
"func7",
"func8",
"func9",
"func7(test)",
"func8(blarg)",
"func9(foo)"
} };
ContentAssistTestUtilities.runProposalTest(fTestProjectSetup, "TestAlreadyDefinedFunctionAssingedToField_2.js", 0, 40,
expectedProposals, false, true);
}
@Ignore @Test
public void testAlreadyDefinedFunctionAssingedToField_SameFile_0() throws Exception {
String[][] expectedProposals = new String[][] { {
"func7",
"func8",
"func9",
"func7(test)",
"func8(blarg)",
"func9(foo)"
} };
ContentAssistTestUtilities.runProposalTest(fTestProjectSetup, "TestAlreadyDefinedFunctionAssingedToField_1.js", 6, 40,
expectedProposals, false, true);
}
@Ignore @Test
public void testAlreadyDefinedFunctionAssingedToField_OtherFile_AfterOpen_0() throws Exception {
String[][] expectedProposals = new String[][] { {
"func7",
"func8",
"func9",
"func7(test)",
"func8(blarg)",
"func9(foo)"
} };
ContentAssistTestUtilities.runProposalTest(fTestProjectSetup, "TestAlreadyDefinedFunctionAssingedToField_2.js", 0, 40,
expectedProposals, false, true);
}
}