Skip to main content
summaryrefslogtreecommitdiffstats
blob: 494f000a89339f2ac627d5312f0b78c4e86d1e81 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?xml version="1.0" encoding="UTF-8"?>
<plugin
   id="org.eclipse.team.tests.cvs.core"
   name="Eclipse CVS Tests Core"
   version="2.1.0"
   provider-name="Eclipse.org">

   <runtime>
      <library name="cvstests.jar">
         <export name="*"/>
         <packages prefixes="org.eclipse.team.tests.ccvs.core, org.eclipse.team.tests.ccvs.ui"/>
      </library>
   </runtime>
   <requires>
      <import plugin="org.apache.xerces"/>
      <import plugin="org.eclipse.core.tests.harness"/>
      <import plugin="org.eclipse.core.resources"/>
      <import plugin="org.eclipse.team.core"/>
      <import plugin="org.eclipse.team.cvs.core"/>
      <import plugin="org.eclipse.team.ui"/>
      <import plugin="org.eclipse.team.cvs.ui"/>
      <import plugin="org.eclipse.compare"/>
      <import plugin="org.eclipse.ui"/>
      <import plugin="org.eclipse.update.core"/>
      <import plugin="org.junit"/>
      <import plugin="org.eclipse.team.tests.core"/>
   </requires>

	<!-- *************** Connection Methods **************** -->
	<extension id="pserver" point="org.eclipse.team.cvs.core.connectionmethods">
		<adapter>
			<run class="org.eclipse.team.tests.ccvs.core.TestConnectionMethod">
				<parameter name="trace" value="false" /> 
			</run>
		</adapter>
	</extension>
	
<!-- **************** TESTS ******************* -->
   <extension
         point="org.eclipse.core.tests.harness.tests">
      <test
            id="cvs.all">
         <run
               class="org.eclipse.team.tests.ccvs.core.AllTests">
         </run>
      </test>
      <test
            id="cvs.provider">
         <run
               class="org.eclipse.team.tests.ccvs.core.provider.AllTestsProvider">
         </run>
      </test>
      <test
            id="cvs.compatibility">
         <run
               class="org.eclipse.team.tests.ccvs.core.compatible.AllTestsCompatibility">
         </run>
      </test>
      <test
            id="cvs.resources">
         <run
               class="org.eclipse.team.tests.ccvs.core.cvsresources.AllTestsCVSResources">
         </run>
      </test>
      <test
            id="cvs.sync">
         <run
               class="org.eclipse.team.tests.ccvs.core.provider.SyncElementTest">
         </run>
      </test>
      <test
            id="cvs.remote">
         <run
               class="org.eclipse.team.tests.ccvs.core.provider.RemoteResourceTest">
         </run>
      </test>
      <test
            id="cvsui.benchmark.all">
         <run
               class="org.eclipse.team.tests.ccvs.ui.benchmark.AllTests">
         </run>
      </test>
      <test
            id="cvsui.benchmark.sync">
         <run
               class="org.eclipse.team.tests.ccvs.ui.benchmark.SyncTests">
         </run>
      </test>
      <test
            id="cvsui.benchmark.workflow">
         <run
               class="org.eclipse.team.tests.ccvs.ui.benchmark.WorkflowTests">
         </run>
      </test>
      <test
            id="cvsui.benchmark.command">
         <run
               class="org.eclipse.team.tests.ccvs.ui.benchmark.CommandTests">
         </run>
      </test>
   </extension>
   <extension
         point="org.eclipse.ui.perspectives">
      <perspective
            name="Empty Perspective"
            class="org.eclipse.team.tests.ccvs.ui.EmptyPerspective"
            id="org.eclipse.team.tests.ccvs.ui.EmptyPerspective">
      </perspective>
   </extension>
   <extension
         id="harness"
         point="org.eclipse.core.runtime.applications">
      <application>
         <run
               class="org.eclipse.team.tests.ccvs.ui.EclipseUITestHarnessApplication">
         </run>
      </application>
   </extension>

</plugin>

Back to the top