improved layout for view.
[phpeclipse.git] / net.sourceforge.phpeclipse.phpunit / plugin.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <plugin
3    id="net.sourceforge.phpeclipse.phpunit"
4    name="net.sourceforge.phpeclipse.phpunit"
5    version="1.0.0"
6    provider-name="Ali Echihabi"
7    class="">
8
9    <runtime>
10       <library name="phpunit.jar"/>
11    </runtime>
12    <requires>
13       <import plugin="org.eclipse.ui"/>
14       <import plugin="org.eclipse.ui.views"/>
15    </requires>
16
17
18    <extension
19          point="org.eclipse.ui.views">
20       <category
21             name="PHP Unit"
22             parentCategory="PHPUnit"
23             id="net.sourceforge.phpeclipse.phpunit">
24       </category>
25       <view
26             name="PHP Unit Testing"
27             category="PHPUnit"
28             class="net.sourceforge.phpeclipse.phpunit.PHPUnitView"
29             id="net.sourceforge.phpeclipse.phpunit">
30       </view>
31    </extension>
32    <extension
33          point="org.eclipse.ui.popupMenus">
34       <objectContribution
35             objectClass="org.eclipse.core.resources.IFile"
36             nameFilter="*.php"
37             id="net.sourceforge.phpeclipse.phpunit.actions.runTestsAction">
38          <action
39                label="Run PHPUnit Tests"
40                class="net.sourceforge.phpeclipse.phpunit.actions.RunTestsAction"
41                id="net.sourceforge.phpeclipse.phpunit.action1">
42          </action>
43       </objectContribution>
44    </extension>
45
46 </plugin>