1/*
2 * Copyright (c) 2001-2004 World Wide Web Consortium, (Massachusetts Institute
3 * of Technology, Institut National de Recherche en Informatique et en
4 * Automatique, Keio University). All Rights Reserved. This program is
5 * distributed under the W3C's Software Intellectual Property License. This
6 * program is distributed in the hope that it will be useful, but WITHOUT ANY
7 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
8 * FOR A PARTICULAR PURPOSE. See W3C License
9 * http://www.w3.org/Consortium/Legal/ for more details.
10 */
11
12package org.w3c.domts.level2.events;
13
14import java.lang.reflect.Constructor;
15
16import junit.framework.TestSuite;
17
18
19import org.w3c.domts.DOMTestDocumentBuilderFactory;
20import org.w3c.domts.DOMTestSuite;
21import org.w3c.domts.LSDocumentBuilderFactory;
22import org.w3c.domts.JAXPDOMTestDocumentBuilderFactory;
23import org.w3c.domts.JUnitTestSuiteAdapter;
24
25/**
26 * Test suite that runs all DOM L2 Events tests using the
27 * Default LS parser in default configuration.
28 *
29 * @author Curt Arnold
30 *
31 */
32public class TestDefaultLS extends TestSuite {
33
34	public static TestSuite suite() throws Exception {
35		Class testClass =
36			ClassLoader.getSystemClassLoader().loadClass(
37				"org.w3c.domts.level2.events.alltests");
38		Constructor testConstructor =
39			testClass.getConstructor(
40				new Class[] { DOMTestDocumentBuilderFactory.class });
41
42		DOMTestDocumentBuilderFactory factory =
43			new LSDocumentBuilderFactory(
44				JAXPDOMTestDocumentBuilderFactory.getConfiguration1());
45
46		Object test = testConstructor.newInstance(new Object[] { factory });
47
48		return new JUnitTestSuiteAdapter((DOMTestSuite) test);
49	}
50
51}
52