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

Groovy example source code file (OverridePropertyGetterTest.groovy)

This example Groovy source code file (OverridePropertyGetterTest.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

exception, exception, groovytestcase, groovytestcase, overridepropertygettertest, overridepropertygettertest, string, string

The Groovy OverridePropertyGetterTest.groovy source code

package groovy

/**
 * test to ensure that overriding getter doesn't throw a NPE on access
 * 
 * @author <a href="mailto:jeremy.rayner@bigfoot.com">Jeremy Rayner
 * @version $Revision: 4996 $
 */

class OverridePropertyGetterTest extends GroovyTestCase { 
    def cheese
       
    void testSimpleMethodParameterAccess() { 
        def o = new OverridePropertyGetterTest()
        def p = new OverridePropertyGetterTest()
        try {          
            //@todo
            //p.cheese = o.cheese
        } catch (Exception e) {
            fail(e.getMessage())
        }
    }
    
    public String getCheese() {
        return cheese
    }
} 

Other Groovy examples (source code examples)

Here is a short list of links related to this Groovy OverridePropertyGetterTest.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.