Examples of BeansXml


Examples of org.jboss.weld.bootstrap.spi.BeansXml

        }
    }

    @Test(expectedExceptions = Exception.class)
    public void testExclusionFilters2() {
        BeansXml xml = getBeansXml("cdi11-exclude-beans2.xml");
        Collection<Metadata<Filter>> filters = xml.getScanning().getExcludes();
        assertEquals(filters.size(), 1);
        for (Metadata<Filter> filter : filters) {
            new FilterPredicate(filter, DefaultResourceLoader.INSTANCE);
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.