In “Contributing to Eclipse” book it is written that to introduce an extension point you should type the next section in plugin.xml
<extension point="org.eclipse.contribution.junit.listeners">
<listener
class="org.eclipse.contribution.junit.RunTestAction$Listener">
</listener>
</extension>
But this code gives me the “Unknown extension point” error”.
Read the book carefully, extension point is defined in the same plugin.xml as
<extension-point id="listeners" name="Test Listeners"/>Get sample code from Downloads at http://www.informit.com/store/product.aspx?isbn=0321205758
Cheers,
Max