new class to manage icons. Showing failures,etc on a test suite.
[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="net.sourceforge.phpeclipse.phpunit.PHPUnitPlugin">
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.PHPUnitView">
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             adaptable="true"
37             nameFilter="*.php"
38             id="net.sourceforge.phpeclipse.phpunit.actions.runTestsAction">
39          <action
40                label="Run PHPUnit Tests"
41                class="net.sourceforge.phpeclipse.phpunit.actions.RunTestsAction"
42                id="net.sourceforge.phpeclipse.phpunit.action1">
43          </action>
44       </objectContribution>
45    </extension>
46
47 </plugin>