Search in sources :

Example 1 with DOM4JTestDocumentBuilderFactory

use of org.w3c.domts.DOM4JTestDocumentBuilderFactory in project robovm by robovm.

the class TestDOM4J method suite.

public static TestSuite suite() throws Exception {
    Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level2.core.alltests");
    Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
    DOMTestDocumentBuilderFactory factory = new DOM4JTestDocumentBuilderFactory(new DocumentBuilderSetting[0]);
    Object test = testConstructor.newInstance(new Object[] { factory });
    return new JUnitTestSuiteAdapter((DOMTestSuite) test);
}
Also used : Constructor(java.lang.reflect.Constructor) JUnitTestSuiteAdapter(org.w3c.domts.JUnitTestSuiteAdapter) DOM4JTestDocumentBuilderFactory(org.w3c.domts.DOM4JTestDocumentBuilderFactory) DOMTestDocumentBuilderFactory(org.w3c.domts.DOMTestDocumentBuilderFactory)

Example 2 with DOM4JTestDocumentBuilderFactory

use of org.w3c.domts.DOM4JTestDocumentBuilderFactory in project robovm by robovm.

the class TestDOM4J method suite.

public static TestSuite suite() throws Exception {
    Class testClass = ClassLoader.getSystemClassLoader().loadClass("org.w3c.domts.level1.core.alltests");
    Constructor testConstructor = testClass.getConstructor(new Class[] { DOMTestDocumentBuilderFactory.class });
    DOMTestDocumentBuilderFactory factory = new DOM4JTestDocumentBuilderFactory(new DocumentBuilderSetting[0]);
    Object test = testConstructor.newInstance(new Object[] { factory });
    return new JUnitTestSuiteAdapter((DOMTestSuite) test);
}
Also used : Constructor(java.lang.reflect.Constructor) JUnitTestSuiteAdapter(org.w3c.domts.JUnitTestSuiteAdapter) DOM4JTestDocumentBuilderFactory(org.w3c.domts.DOM4JTestDocumentBuilderFactory) DOMTestDocumentBuilderFactory(org.w3c.domts.DOMTestDocumentBuilderFactory)

Aggregations

Constructor (java.lang.reflect.Constructor)2 DOM4JTestDocumentBuilderFactory (org.w3c.domts.DOM4JTestDocumentBuilderFactory)2 DOMTestDocumentBuilderFactory (org.w3c.domts.DOMTestDocumentBuilderFactory)2 JUnitTestSuiteAdapter (org.w3c.domts.JUnitTestSuiteAdapter)2