Use this extension point to tell the test framework about the existence of your test suite classes. Only test suites that use this extension point show up in the Test Suites view. Use this element to register a list of test suites with the framework. There are two ways to register, using extensions of <code>junit.framework.TestSuite</code> or using an implementer of <code>org.eclipse.rse.tests.framework.ITestSuiteProvider</code>. The id of the extension point you are extending. This should be <code>org.eclipse.rse.tests.framework.suites</code>. The id of this particular extension. The external translatable name of this particular extension. Use this element to describe the existence of a test suite to the framework. The class of the test suite. This must be an extension of <code>junit.framework.TestSuite</code>. This is the name of the test suite that will appear in the test suite view. If it is not present then the suite provider will be asked for the suite's name, but that may cause activation of the plugin that contains the suite. To delay this activation use this attribute. Use this element to describe an argument to the creator of the test suite. Provide an argument to the <code>getSuite(String)</code> method of the provider. This argument can be used to control the generation of the test suite by the provider. If no argument is provided here then <code>null</code> is passed. Use this element to describe a test suite type and the class that will process it. Version 1.0.0 The framework comes supplied with an example in the plugin <code>org.eclipse.rse.tests.framework.examples</code>. This example enables several JUnit test suites using both <code>suite</code> and <code>suiteProvider</code> declarations. Some suites exhibit failures and some exhibit errors. The rest succeed completely. There is no API other than the JUnit API associated with this framework. One only needs to register a test suite with this extension point to have it appear and be runnable from within the Test Suites view. Not applicable. (c) Copyright IBM Corporation 2004, 2006.