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

What this is

This file 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.

Other links

The source code

/*
 *                 Sun Public License Notice
 *
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 *
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2004 Sun
 * Microsystems, Inc. All Rights Reserved.
 */

package org.netbeans.jmi.javamodel.codegen;

import org.netbeans.junit.NbTestSuite;
import org.netbeans.junit.NbTestCase;
import org.netbeans.jmi.javamodel.*;
import org.openide.filesystems.FileStateInvalidException;
import junit.textui.TestRunner;
import java.io.IOException;
import java.util.Arrays;

/**
 * @author Martin Matula
 */
public class GenericsTest extends NbTestCase {
    public GenericsTest() {
        super("GenericsTest");
    }

    public static NbTestSuite suite() {
        NbTestSuite suite = new NbTestSuite(GenericsTest.class);
        return suite;
    }

    JavaClass clazz;
    JavaModelPackage pkg;

    protected void setUp() {
        clazz = (JavaClass) Utility.findClass("org.netbeans.test.codegen.Generics");
        pkg = (JavaModelPackage) clazz.refImmediatePackage();
    }

    public void testAddBound() throws java.io.IOException, FileStateInvalidException {
        boolean fail = true;
        Utility.beginTrans(true);
        try {
            TypeParameter tp = (TypeParameter) clazz.getTypeParameters().get(0);
            tp.getInterfaceNames().add(pkg.getMultipartId().createMultipartId("List", null, null));
            fail = false;
        }
        finally {
            Utility.endTrans(fail);
        }
        assertFile("File is not correctly generated.",
                getGoldenFile("Generics.pass"),
                Utility.getFile(getDataDir(), "org/netbeans/test/codegen/Generics.java"),
                getWorkDir()
        );
    }

    public void testAddTypeParamMethod() throws IOException, FileStateInvalidException {
        JavaClass cls = (JavaClass) Utility.findClass("org.netbeans.test.codegen.GenericMethod");
        boolean fail = true;
        Utility.beginTrans(true);
        try {
            TypeParameter tp = pkg.getTypeParameter().createTypeParameter("Y", null, 0, null, null, null, null, Arrays.asList(new Object[] {pkg.getMultipartId().createMultipartId("Collection", null, null)}), null);
            Method m = (Method) cls.getContents().get(0);
            m.getTypeParameters().add(tp);
            fail = false;
        }
        finally {
            Utility.endTrans(fail);
        }
        assertFile("File is not correctly generated.",
                getGoldenFile("GenericMethod.pass"),
                Utility.getFile(getDataDir(), "org/netbeans/test/codegen/GenericMethod.java"),
                getWorkDir()
        );
    }

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        TestRunner.run(suite());
    }

}
... 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.