alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Groovy example source code file (AnnotationMemberValuesResolutionV1StubsTest.groovy)

This example Groovy source code file (AnnotationMemberValuesResolutionV1StubsTest.groovy) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Groovy tags/keywords

annotationmembervaluesresolutionstubstestv1, annotationmembervaluesresolutionv1stubstest, foo4434v1, foo4434v1, map, myenum4434v1, myenum4434v1, other_value, other_value, some_value, some_value, string, stringsourcesstubtestcase, target

The Groovy AnnotationMemberValuesResolutionV1StubsTest.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 a enum ClassExpression.<EnumConstant> 
 *  is used as an annotation member value
 *
 * @author Roshan Dawrani
 */
class AnnotationMemberValuesResolutionV1StubsTest extends StringSourcesStubTestCase {

    Map<String, String> provideSources() {
        println 'AnnotationMemberValuesResolutionStubsTestV1'
        [
            'foo/Foo4434V1.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.MyEnum4434V1;
                
                @Retention(RetentionPolicy.RUNTIME)
                @Target( { ElementType.TYPE })
                public @interface Foo4434V1 {
                    MyEnum4434V1 val() default MyEnum4434V1.OTHER_VALUE;
                }
            ''',
            'baz/MyEnum4434V1.java': '''
                package baz;

                public enum MyEnum4434V1 {SOME_VALUE, OTHER_VALUE}
            ''',
            'Bar4434V1.groovy': '''
                import foo.Foo4434V1
                import baz.MyEnum4434V1
                
                @Foo4434V1(val = MyEnum4434V1.SOME_VALUE)
                class Bar4434V1 {}
            '''
        ]
    }

    void verifyStubs() {
        classes['Bar4434V1'].with {
            assert annotations[0].getProperty('val').toString() == 'baz.MyEnum4434V1.SOME_VALUE'
        }
    }
}

Other Groovy examples (source code examples)

Here is a short list of links related to this Groovy AnnotationMemberValuesResolutionV1StubsTest.groovy source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.