This repository was archived by the owner on Sep 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplugin.xml
More file actions
65 lines (61 loc) · 2.31 KB
/
Copy pathplugin.xml
File metadata and controls
65 lines (61 loc) · 2.31 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.debug.ui.launchShortcuts">
<shortcut
label="Scirocco Test"
icon="icons/scirocco.png"
helpContextId="org.eclipse.jdt.junit.launch_shortcut"
class="com.android.test.scirocco2.extend.core.SciroccoLaunchShortcut"
modes="run, debug"
id="com.android.test.scirocco2.junitShortcut">
<contextualLaunch>
<enablement>
<with variable="selection">
<count value="1"/>
<iterate>
<adapt type="org.eclipse.jdt.core.IJavaElement">
<test property="org.eclipse.jdt.core.hasTypeOnClasspath" value="junit.framework.Test"/>
</adapt>
</iterate>
</with>
</enablement>
</contextualLaunch>
<configurationType
id="org.eclipse.jdt.junit.launchconfig">
</configurationType>
</shortcut>
</extension>
<extension
point="org.eclipse.jdt.junit.testRunListeners">
<testRunListener class="com.android.test.scirocco2.extend.core.ScirrocoTestListener"/>
</extension>
<extension
point="org.eclipse.core.runtime.preferences">
<initializer
class="com.android.test.scirocco2.preference.Scirocco2PreferenceInitializer">
</initializer>
</extension>
<extension
point="org.eclipse.ui.preferencePages">
<page
class="com.android.test.scirocco2.preference.Scirocco2PreferencePage"
id="com.android.test.scirocco2.preference.page"
name="Scirocco for WebDriver">
</page>
</extension>
<extension
point="org.eclipse.ui.newWizards">
<category
id="com.android.test.scirocco2.category"
name="Scirocco for WebDriver"/>
<wizard
category="com.android.test.scirocco2.category"
class="com.android.test.scirocco2.extend.wizard.SciroccoProjectWizard"
icon="icons/scirocco.png"
id="com.android.test.scirocco2.wizard"
name="Android Test Project"
project="true"/>
</extension>
</plugin>