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

package org.netbeans.modules.xml.core;

import java.awt.Image;
import javax.swing.ImageIcon;
import java.util.ResourceBundle;
import java.util.List;
import java.util.Collection;
import java.util.TreeMap;
import java.io.*;
import java.net.URL;
import java.net.MalformedURLException;
import org.openide.TopManager;
import org.openide.NotifyDescriptor;
import junit.framework.*;

public class AbstractUtilTest extends TestCase {
    
    public AbstractUtilTest(java.lang.String testName) {
        super(testName);
    }
    
    public static void main(java.lang.String[] args) {
        junit.textui.TestRunner.run(suite());
    }
    
    public static Test suite() {
        TestSuite suite = new TestSuite(AbstractUtilTest.class);
        
        return suite;
    }
    
    public void testGetCallerPackage() {
        System.out.println("testGetCallerPackage");

        try {
            String pack = getClass().getPackage().getName();

            assertTrue("Class package detection failed! " + testPackage(), testPackage().equals(pack));
            assertTrue("Inner class package detection failed! " + Inner.testPackage(), Inner.testPackage().equals(pack));
        } catch (Exception ex) {
            ex.printStackTrace(new PrintWriter(System.out));
        }
    }
    
    private String testPackage() {
        return AbstractUtilImpl.getCallerPackage();
    }
    
    private class AbstractUtilImpl extends AbstractUtil {
        
    }
    
    private static class Inner {
        static String testPackage() {
            return AbstractUtilImpl.getCallerPackage();
        }
    }
}
... 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.