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 suite types and test suites with the framework. Test suite types define holders for test suites that allow them to participate in the test suite view and perhaps interact with the user. Test suites are registered to a test suite type. See the <code>suite</code> element for information on the pre-defined test suite types. 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 type of the test suite. Types are defined using the <code>type</code> element of this extension point. The basic implementation defines two types: <code>standard</code> and <code>generated</code>. Standard suites typically just subclass org.junit.TestSuite. Generated suites will implement <code>org.eclipse.rse.tests.framework.ITestSuiteProvider</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. The name of the argument given to a test suite provider. Use this element to describe a test suite type and the class that will process it. The name of the type of test suite. The class that implements the holder for this test suite. A holder wraps the suite for the purposes of running within the RSE test framework. This class must extend <code>org.eclipse.rse.tests.framework.DelegatingTestSuiteHolder</code>. Once a type is defined, it can be referenced by a test suite defined in this extension. 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 2004, 2007 IBM Corporation and others.