use of com.github.javaparser.ast.body.AnnotationMemberDeclaration in project javaparser by javaparser.
the class AnnotationMemberDeclarationTransformationsTest method removingAnnotationOnSomeLine.
@Test
public void removingAnnotationOnSomeLine() {
AnnotationMemberDeclaration it = consider("@myAnno int foo();");
it.getAnnotations().remove(0);
assertTransformedToString("int foo();", it);
}
Aggregations