summaryrefslogtreecommitdiffstats
path: root/dom/src/test/java/org/w3c/domts/DOMTestSuite.java
diff options
context:
space:
mode:
Diffstat (limited to 'dom/src/test/java/org/w3c/domts/DOMTestSuite.java')
-rw-r--r--dom/src/test/java/org/w3c/domts/DOMTestSuite.java62
1 files changed, 0 insertions, 62 deletions
diff --git a/dom/src/test/java/org/w3c/domts/DOMTestSuite.java b/dom/src/test/java/org/w3c/domts/DOMTestSuite.java
deleted file mode 100644
index 94a76b8..0000000
--- a/dom/src/test/java/org/w3c/domts/DOMTestSuite.java
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * Copyright (c) 2001-2004 World Wide Web Consortium,
- * (Massachusetts Institute of Technology, Institut National de
- * Recherche en Informatique et en Automatique, Keio University). All
- * Rights Reserved. This program is distributed under the W3C's Software
- * Intellectual Property License. This program is distributed in the
- * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
- * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- * PURPOSE.
- * See W3C License http://www.w3.org/Consortium/Legal/ for more details.
- */
-
-/*
- $Log: DOMTestSuite.java,v $
- Revision 1.4 2004/03/11 01:44:21 dom-ts-4
- Checkstyle fixes (bug 592)
-
- Revision 1.3 2002/02/03 04:22:35 dom-ts-4
- DOM4J and Batik support added.
- Rework of parser settings
-
- Revision 1.2 2001/07/23 04:52:20 dom-ts-4
- Initial test running using JUnit.
-
- */
-
-package org.w3c.domts;
-
-/**
- * Abstract base class for all test suites
- * (that is any collection of DOMTest's)
- *
- * @author Curt Arnold
- */
-public abstract class DOMTestSuite
- extends DOMTest {
- /**
- * This constructor is used for suites that
- * assert one or more implementation attributes or
- * features. setLibrary should be called before
- * the completion of the constructor in the derived class.
- */
- protected DOMTestSuite() {
- }
-
- /**
- * This constructor is used for suites that make no
- * additional requirements on the parser configuration.
- * @param factory may not be null
- */
- protected DOMTestSuite(DOMTestDocumentBuilderFactory factory) {
- super(factory);
- }
-
- /**
- * Adds a test to the test suite. This method can
- * only be run after the test suite has been attached
- * to a test framework since each framework implements
- * test suites in different manners.
- */
- abstract public void build(DOMTestSink sink);
-}