blob: b78cebc88f76fa1f75dcb1847279d0c9a9b8a853 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 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.hyperlink;
import java.util.ArrayList;
import org.eclipse.wst.jsdt.ui.tests.utils.TestProjectSetup;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
@SuppressWarnings("nls")
public class HyperLinkTest {
private static TestProjectSetup fTestProjectSetup;
@BeforeClass
public static void setup() throws Exception {
fTestProjectSetup = new TestProjectSetup("ContentAssist", "root", false);
fTestProjectSetup.setUp();
}
@Ignore @Test
public void testHyperlink_0() throws Exception {
ArrayList<String> expectedFiles = new ArrayList<String>();
expectedFiles.add("HyperLink_0.js");
HyperLinkTestUtilities.checkHyperlink(fTestProjectSetup, 1, 15, "HyperLink_1.js", expectedFiles);
}
}