Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2002-01-17 21:11:33 +0000
committerMichael Valenta2002-01-17 21:11:33 +0000
commitc679823b1459b970200a9baddaeb0973f2bc0a9d (patch)
tree5ca7919c54227cf3ea335bf9523ab4cfbc4f0905 /tests/org.eclipse.team.tests.cvs.core/plugin.xml
parentd06ec1271b9fd524b78b57a474f76c715263ea1c (diff)
downloadeclipse.platform.team-c679823b1459b970200a9baddaeb0973f2bc0a9d.tar.gz
eclipse.platform.team-c679823b1459b970200a9baddaeb0973f2bc0a9d.tar.xz
eclipse.platform.team-c679823b1459b970200a9baddaeb0973f2bc0a9d.zip
Initial release
Diffstat (limited to 'tests/org.eclipse.team.tests.cvs.core/plugin.xml')
-rw-r--r--tests/org.eclipse.team.tests.cvs.core/plugin.xml50
1 files changed, 50 insertions, 0 deletions
diff --git a/tests/org.eclipse.team.tests.cvs.core/plugin.xml b/tests/org.eclipse.team.tests.cvs.core/plugin.xml
new file mode 100644
index 000000000..9814bb498
--- /dev/null
+++ b/tests/org.eclipse.team.tests.cvs.core/plugin.xml
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<plugin
+ name="Eclipse CVS Tests Core"
+ id="org.eclipse.team.tests.cvs.core"
+ version="1.0"
+ provider-name="Object Technology International, Inc.">
+
+ <requires>
+ <import plugin="org.eclipse.core.resources"/>
+ <import plugin="org.eclipse.team.core"/>
+ <import plugin="org.eclipse.team.cvs.core"/>
+ <import plugin="org.eclipse.core.tests.harness"/>
+ <import plugin="org.junit"/>
+ </requires>
+
+ <runtime>
+ <library name="cvstests.jar">
+ <export name="*"/>
+ </library>
+ </runtime>
+
+<!-- **************** TESTS ******************* -->
+
+ <extension point="org.eclipse.core.tests.harness.tests">
+ <test id="org.eclipse.team.tests.cvs.core.AllTests">
+ <run class="org.eclipse.team.tests.ccvs.core.AllTests"/>
+ </test>
+ <test id="org.eclipse.team.tests.cvs.core.ProviderTests">
+ <run class="org.eclipse.team.tests.ccvs.core.provider.AllTests"/>
+ </test>
+ <test id="org.eclipse.team.tests.cvs.core.CompatibilityTest">
+ <run class="org.eclipse.team.tests.ccvs.core.compatible.AllTests"/>
+ </test>
+ <test id="org.eclipse.team.tests.cvs.core.CVSResources">
+ <run class="org.eclipse.team.tests.ccvs.core.cvsresources.AllTests"/>
+ </test>
+ <test id="org.eclipse.team.tests.cvs.core.CurrentTest">
+ <run class="org.eclipse.team.tests.ccvs.core.compatible.CurrentTest"/>
+ </test>
+
+ <test id="sync">
+ <run class="org.eclipse.team.tests.ccvs.core.provider.SyncElementTest"/>
+ </test>
+
+ <test id="remote">
+ <run class="org.eclipse.team.tests.ccvs.core.provider.RemoteResourceTest"/>
+ </test>
+ </extension>
+
+</plugin>

Back to the top