blob: 8f9d09aed1fa9f6698c2311e40916c1a7d09f66f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Shane Clarke.
* 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:
* Shane Clarke - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.ws.jaxws.core.annotation.validation.tests;
import org.eclipse.jdt.core.IMethod;
import org.eclipse.jst.ws.internal.jaxws.core.JAXWSCoreMessages;
public class OnewayNoCheckedExceptionsRuleTest extends AbstractOnewayValidationTest {
@Override
protected String getClassContents() {
StringBuilder classContents = new StringBuilder("package com.example;\n\n");
classContents.append("public class MyClass {\n\n\tpublic void myMethod(int i) throws Exception {\n\t}\n}");
return classContents.toString();
}
@Override
public String getErrorMessage() {
return JAXWSCoreMessages.ONEWAY_NO_CHECKED_EXCEPTIONS;
}
@Override
public IMethod getMethodToTest() {
return source.findPrimaryType().getMethod("myMethod", new String[]{"I"});
}
}