Package xdoclet.retest.util

Examples of xdoclet.retest.util.ComparisonResultSet


    public void testImpl()
    throws Exception
    {
        ClassComparator comparator;
        ComparisonResultSet res;
        Class ref = Class.forName(refBase+ ".ejb." + getClassName() + "Session");
        Class gen = Class.forName(genBase+ ".ejb." + getClassName() + "Session");
        comparator = new ClassComparator(ref,gen);
        res = comparator.compare();
        if (res.error()) System.out.println(res.toString());
        assertTrue("Home Interface comparison failed "+res, ! res.error());
    }
View Full Code Here

TOP

Related Classes of xdoclet.retest.util.ComparisonResultSet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.