*** empty log message ***
diff --git a/development/org.eclipse.wst.sse.unittests/plugin.xml b/development/org.eclipse.wst.sse.unittests/plugin.xml
index 9b9ee19..ea62239 100644
--- a/development/org.eclipse.wst.sse.unittests/plugin.xml
+++ b/development/org.eclipse.wst.sse.unittests/plugin.xml
@@ -29,6 +29,6 @@
 		</editor>
 	</extension>
 
-	<extension-point id="additionalTests" name="%additionalTests"/>
+	<extension-point id="additionalTests" name="%additionalTests" schema="schema/additionalTests.exsd"/>
 
 </plugin>
diff --git a/development/org.eclipse.wst.sse.unittests/schema/additionalTests.exsd b/development/org.eclipse.wst.sse.unittests/schema/additionalTests.exsd
new file mode 100644
index 0000000..e0e5893
--- /dev/null
+++ b/development/org.eclipse.wst.sse.unittests/schema/additionalTests.exsd
@@ -0,0 +1,123 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!-- Schema file written by PDE -->
+<schema targetNamespace="org.eclipse.wst.sse.unittests">
+<annotation>
+      <appInfo>
+         <meta.schema plugin="org.eclipse.wst.sse.unittests" id="additionalTests" name="%additionalTests"/>
+      </appInfo>
+      <documentation>
+         This extension point provides a way to add extra test cases and suites to the already running list without declaring a runtime dependency in this plug-in.
+      </documentation>
+   </annotation>
+
+   <element name="extension">
+      <complexType>
+         <choice minOccurs="0" maxOccurs="unbounded">
+            <element ref="test"/>
+            <element ref="suite"/>
+         </choice>
+         <attribute name="point" type="string" use="required">
+            <annotation>
+               <documentation>
+                  
+               </documentation>
+            </annotation>
+         </attribute>
+         <attribute name="id" type="string">
+            <annotation>
+               <documentation>
+                  
+               </documentation>
+            </annotation>
+         </attribute>
+         <attribute name="name" type="string">
+            <annotation>
+               <documentation>
+                  
+               </documentation>
+               <appInfo>
+                  <meta.attribute translatable="true"/>
+               </appInfo>
+            </annotation>
+         </attribute>
+      </complexType>
+   </element>
+
+   <element name="test">
+      <annotation>
+         <documentation>
+            Adds an individual Test case to run.
+         </documentation>
+      </annotation>
+      <complexType>
+         <attribute name="class" type="string" use="required">
+            <annotation>
+               <documentation>
+                  The Test class name.
+               </documentation>
+               <appInfo>
+                  <meta.attribute kind="java" basedOn="junit.framework.Test:"/>
+               </appInfo>
+            </annotation>
+         </attribute>
+      </complexType>
+   </element>
+
+   <element name="suite">
+      <annotation>
+         <documentation>
+            Adds a TestSuite to run.
+         </documentation>
+      </annotation>
+      <complexType>
+         <attribute name="class" type="string" use="required">
+            <annotation>
+               <documentation>
+                  The TestSuite class name.
+               </documentation>
+               <appInfo>
+                  <meta.attribute kind="java" basedOn="junit.framework.TestSuite:"/>
+               </appInfo>
+            </annotation>
+         </attribute>
+      </complexType>
+   </element>
+
+   <annotation>
+      <appInfo>
+         <meta.section type="since"/>
+      </appInfo>
+      <documentation>
+         [Enter the first release in which this extension point appears.]
+      </documentation>
+   </annotation>
+
+   <annotation>
+      <appInfo>
+         <meta.section type="examples"/>
+      </appInfo>
+      <documentation>
+         [Enter extension point usage example here.]
+      </documentation>
+   </annotation>
+
+   <annotation>
+      <appInfo>
+         <meta.section type="apiInfo"/>
+      </appInfo>
+      <documentation>
+         [Enter API information here.]
+      </documentation>
+   </annotation>
+
+   <annotation>
+      <appInfo>
+         <meta.section type="implementation"/>
+      </appInfo>
+      <documentation>
+         [Enter information about supplied implementation of this extension point.]
+      </documentation>
+   </annotation>
+
+
+</schema>