Test Run Listeners
This extension point is deprecated
Identifier:
org.eclipse.jdt.junit.testRunListeners
Since:
2.1
Description:
Extension point to register additional test run listeners. A test run listener is notified about the execution of a test run.
Configuration Markup:
<!ELEMENT extension (
testRunListener)>
<!ATTLIST extension
point CDATA #REQUIRED
id CDATA #IMPLIED
name CDATA #IMPLIED
>
a fully qualified identifier of the target extension point
-
id - a fully qualified identifier of the target extension point
<!ELEMENT testRunListener EMPTY>
<!ATTLIST testRunListener
class CDATA #REQUIRED
>
Deprecated: Register the new test run listener directly at JUnitCore
-
class - Test run class implementing org.eclipse.jdt.junit.ITestRunListener
Examples:
The following is an example of a test run listener contribution:
<extension point=
"org.eclipse.jdt.junit.testRunListeners"
>
<testRunListener class=
"com.example.SampleTestRunListener"
/>
</extension>
Copyright (c) 2004 IBM Corporation and others.
All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at
https://www.eclipse.org/legal/epl-v10.html