Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.jst.validation.test/jUnitWrapper/org/eclipse/jst/validation/test/junit/OperationTest.java')
-rw-r--r--tests/org.eclipse.jst.validation.test/jUnitWrapper/org/eclipse/jst/validation/test/junit/OperationTest.java60
1 files changed, 0 insertions, 60 deletions
diff --git a/tests/org.eclipse.jst.validation.test/jUnitWrapper/org/eclipse/jst/validation/test/junit/OperationTest.java b/tests/org.eclipse.jst.validation.test/jUnitWrapper/org/eclipse/jst/validation/test/junit/OperationTest.java
deleted file mode 100644
index 6c0b76b5..00000000
--- a/tests/org.eclipse.jst.validation.test/jUnitWrapper/org/eclipse/jst/validation/test/junit/OperationTest.java
+++ /dev/null
@@ -1,60 +0,0 @@
-package org.eclipse.jst.validation.test.junit;
-
-import junit.framework.TestCase;
-
-import org.eclipse.core.resources.IProject;
-import org.eclipse.jst.validation.test.internal.registry.OperationTestcase;
-import org.eclipse.jst.validation.test.internal.registry.TestcaseUtility;
-import org.eclipse.jst.validation.test.internal.util.BVTRunner;
-
-
-/**
- * Instances of this class run an IWorkspaceRunnable that tests the
- * validation framework.
- */
-public class OperationTest extends TestCase {
- private OperationSuite _suite = null;
- private OperationTestcase _tmd = null;
-
- public OperationTest(OperationTestcase tmd, OperationSuite suite) {
- super(tmd.getName()); // the method named "test" runs the test.
- _tmd = tmd;
- _suite = suite;
- }
-
- public JUnitBuffer getBuffer() {
- return _suite.getBuffer();
- }
-
- public String toString() {
- return _tmd.getName();
- }
-
- /* (non-Javadoc)
- * @see junit.framework.TestCase#runTest()
- */
- protected void runTest() throws Throwable {
- try {
- IProject project = TestcaseUtility.findProject(_tmd);
- if((project == null) || !project.exists()) {
- // File needs to be imported (i.e., set up the test).
- if(!BVTRunner.singleton().setupTests(getBuffer(), _tmd, false)) {
- fail("Could not import input from directory " + TestcaseUtility.getInputDir(_tmd)); //$NON-NLS-1$
- }
- }
-
- if(!project.isAccessible()) {
- fail("Project " + project.getName() + " is not accessible."); //$NON-NLS-1$ //$NON-NLS-2$
- }
-
- _tmd.run(getBuffer(), project);
- if(!getBuffer().isSuccessful(_tmd.getName())) {
- fail(_tmd.getName() + " failed. Read the log for details. " + getBuffer().getLogFileName()); //$NON-NLS-1$
- }
- }
- finally {
- // Whether this test case fails or not, send its results to the log.
- getBuffer().delineate(_tmd.getName());
- }
- }
-}

Back to the top