/******************************************************************************* * Copyright (c) 2004, 2014 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 * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Rational Software - Initial API and implementation * Bryan Wilkinson (QNX) *******************************************************************************/ package org.eclipse.cdt.ui.tests.text.contentassist2; import junit.framework.Test; import junit.framework.TestSuite; /** * @author hamer * * Testing class reference, with no prefix * https://bugs.eclipse.org/bugs/show_bug.cgi?id=50621 * https://bugs.eclipse.org/bugs/show_bug.cgi?id=169860 */ public class CompletionTest_ClassReference_NoPrefix extends CompletionProposalsBaseTest{ private final String fileName = "CompletionTestStart21.h"; private final String fileFullPath ="resources/contentassist/" + fileName; private final String headerFileName = "CompletionTestStart.h"; private final String headerFileFullPath ="resources/contentassist/" + headerFileName; private final String expectedPrefix = ""; private final String[] expectedResults = { "aClass", "anotherClass", "xOtherClass", "AStruct", "XStruct" }; public CompletionTest_ClassReference_NoPrefix(String name) { super(name); } public static Test suite() { TestSuite suite= new TestSuite(CompletionTest_ClassReference_NoPrefix.class.getName()); suite.addTest(new CompletionTest_ClassReference_NoPrefix("testCompletionProposals")); return suite; } @Override protected int getCompletionPosition() { return getBuffer().indexOf(" ") + 2; } @Override protected String getExpectedPrefix() { return expectedPrefix; } @Override protected String[] getExpectedResultsValues() { return expectedResults; } @Override protected String getFileName() { return fileName; } @Override protected String getFileFullPath() { return fileFullPath; } @Override protected String getHeaderFileFullPath() { return headerFileFullPath; } @Override protected String getHeaderFileName() { return headerFileName; } }