blob: b5af3b7ccb888981a39aac39b5cb51536b61f2f6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) Apr 2, 2014 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.pde.api.tools.builder.tests.annotations;
import junit.framework.Test;
import org.eclipse.core.runtime.IPath;
import org.eclipse.pde.api.tools.internal.builder.BuilderMessages;
import org.eclipse.pde.api.tools.internal.problems.ApiProblemFactory;
import org.eclipse.pde.api.tools.internal.provisional.descriptors.IElementDescriptor;
import org.eclipse.pde.api.tools.internal.provisional.problems.IApiProblem;
/**
*
*/
public class InvalidInterfaceAnnotationTests extends AnnotationTest {
/**
* @param name
*/
public InvalidInterfaceAnnotationTests(String name) {
super(name);
}
/**
* @return the tests for this class
*/
public static Test suite() {
return buildTestSuite(InvalidInterfaceAnnotationTests.class);
}
@Override
protected IPath getTestSourcePath() {
return super.getTestSourcePath().append("interface"); //$NON-NLS-1$
}
@Override
protected int getDefaultProblemId() {
return ApiProblemFactory.createProblemId(IApiProblem.CATEGORY_USAGE, IElementDescriptor.TYPE, IApiProblem.UNSUPPORTED_ANNOTATION_USE, IApiProblem.NO_FLAGS);
}
/**
* Tests @NoInstantiate on an interface
*
* @throws Exception
*/
public void testNoInstantiateF() throws Exception {
x1(false);
}
/**
* Tests @NoInstantiate on an interface
*
* @throws Exception
*/
public void testNoInstantiateI() throws Exception {
x1(true);
}
private void x1(boolean inc) {
setExpectedProblemIds(getDefaultProblemIdSet(1));
setExpectedMessageArgs(new String[][] { {
"@NoInstantiate", BuilderMessages.TagValidator_an_interface } //$NON-NLS-1$
});
deployAnnotationTest("test1.java", inc, false); //$NON-NLS-1$
}
/**
* Tests @NoOverride on an interface
*
* @throws Exception
*/
public void testNoOverrideF() throws Exception {
x2(false);
}
/**
* Tests @NoOvveride on an interface
*
* @throws Exception
*/
public void testNoOverrideI() throws Exception {
x2(true);
}
private void x2(boolean inc) {
setExpectedProblemIds(getDefaultProblemIdSet(1));
setExpectedMessageArgs(new String[][] { {
"@NoOverride", BuilderMessages.TagValidator_an_interface } //$NON-NLS-1$
});
deployAnnotationTestWithErrors("test2.java", inc, false); //$NON-NLS-1$
}
}