initial plugin manifest addition: declares view and action in popup menu
authorshleh <shleh>
Fri, 11 Jun 2004 00:34:40 +0000 (00:34 +0000)
committershleh <shleh>
Fri, 11 Jun 2004 00:34:40 +0000 (00:34 +0000)
net.sourceforge.phpeclipse.phpunit/plugin.xml [new file with mode: 0644]

diff --git a/net.sourceforge.phpeclipse.phpunit/plugin.xml b/net.sourceforge.phpeclipse.phpunit/plugin.xml
new file mode 100644 (file)
index 0000000..8cdf02d
--- /dev/null
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<plugin
+   id="net.sourceforge.phpeclipse.phpunit"
+   name="net.sourceforge.phpeclipse.phpunit"
+   version="1.0.0"
+   provider-name="Ali Echihabi"
+   class="">
+
+   <runtime>
+      <library name="phpunit.jar"/>
+   </runtime>
+   <requires>
+      <import plugin="org.eclipse.ui"/>
+      <import plugin="org.eclipse.ui.views"/>
+   </requires>
+
+
+   <extension
+         point="org.eclipse.ui.views">
+      <category
+            name="PHP Unit"
+            parentCategory="PHPUnit"
+            id="net.sourceforge.phpeclipse.phpunit">
+      </category>
+      <view
+            name="PHP Unit Testing"
+            category="PHPUnit"
+            class="net.sourceforge.phpeclipse.phpunit.PHPUnitView"
+            id="net.sourceforge.phpeclipse.phpunit">
+      </view>
+   </extension>
+   <extension
+         point="org.eclipse.ui.popupMenus">
+      <objectContribution
+            objectClass="org.eclipse.core.resources.IFile"
+            nameFilter="*.php"
+            id="net.sourceforge.phpeclipse.phpunit.actions.runTestsAction">
+         <action
+               label="Run PHPUnit Tests"
+               class="net.sourceforge.phpeclipse.phpunit.actions.RunTestsAction"
+               id="net.sourceforge.phpeclipse.phpunit.action1">
+         </action>
+      </objectContribution>
+   </extension>
+
+</plugin>