|
Groovy example source code file (AnnotationMemberValuesResolutionV3StubsTest.groovy)
The Groovy AnnotationMemberValuesResolutionV3StubsTest.groovy source code
/*
* Copyright 2003-2010 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.codehaus.groovy.tools.stubgenerator
/**
* Test that FQN appears fine in generated stub when ClassExpression.<Prop> is used as an annotation member value
*
* @author Roshan Dawrani
*/
class AnnotationMemberValuesResolutionV3StubsTest extends StringSourcesStubTestCase {
Map<String, String> provideSources() {
println 'AnnotationMemberValuesResolutionStubsTestV3'
[
'foo/Foo4434V3.java': '''
package foo;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import baz.MyClass4434V3;
@Retention(RetentionPolicy.RUNTIME)
@Target( { ElementType.TYPE })
public @interface Foo4434V3 {
String val() default "";
}
''',
'baz/MyClass4434V3.java': '''
package baz;
public class MyClass4434V3 {public static final String SOME_CONST = "some constant";}
''',
'Bar4434V3.groovy': '''
import foo.Foo4434V3
import baz.MyClass4434V3
@Foo4434V3(val = MyClass4434V3.SOME_CONST)
class Bar4434V3 {}
'''
]
}
void verifyStubs() {
classes['Bar4434V3'].with {
assert annotations[0].getProperty('val').toString() == 'baz.MyClass4434V3.SOME_CONST'
}
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy AnnotationMemberValuesResolutionV3StubsTest.groovy source code file: |
Other websites by Alvin Alexander:
Life/living in Alaska (OneMansAlaska.com)
How I Sold My Business (HowISoldMyBusiness.com)
Copyright 1998-2011 Alvin Alexander, devdaily.com
All Rights Reserved.