blob: dc125dafa4f4d4bf19b0c195ca5a23b77045dae5 [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")
@Ignore
public class AddToNavigatorTests {
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 test_AddToNavigator_OtherFile_BeforeOpen_0() throws Exception {
String[][] expectedProposals = new String[][] { {
"addToNav_func0(test) : Number - Navigator",
"addToNav_field0 : String - Navigator"} };
ContentAssistTestUtilities.runProposalTest(fTestProjectSetup, "TestAddToNavigator_1.js", 0, 10, expectedProposals);
}
@Ignore @Test
public void test_AddToNavigator_SameFile_0() throws Exception {
String[][] expectedProposals = new String[][] { {
"addToNav_func0(test) : Number - Navigator",
"addToNav_field0 : String - Navigator"} };
ContentAssistTestUtilities.runProposalTest(fTestProjectSetup, "TestAddToNavigator_0.js", 6, 10, expectedProposals);
}
@Ignore @Test
public void test_AddToNavigator_OtherFile_AfterOpen_0() throws Exception {
String[][] expectedProposals = new String[][] { {
"addToNav_func0(test) : Number - Navigator",
"addToNav_field0 : String - Navigator"} };
ContentAssistTestUtilities.runProposalTest(fTestProjectSetup, "TestAddToNavigator_1.js", 0, 10, expectedProposals);
}
}