From 5ca17f653ef22b9a99b63ea5aa043c3ffc684d39 Mon Sep 17 00:00:00 2001 From: David Dykstal Date: Tue, 19 Jun 2007 01:48:49 +0000 Subject: [PATCH] [180640] correcting test suite definition documentation --- .../org.eclipse.rse.tests.framework/schema/suites.exsd | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/rse/tests/org.eclipse.rse.tests.framework/schema/suites.exsd b/rse/tests/org.eclipse.rse.tests.framework/schema/suites.exsd index 02be925bd0f..f06e3644e5c 100644 --- a/rse/tests/org.eclipse.rse.tests.framework/schema/suites.exsd +++ b/rse/tests/org.eclipse.rse.tests.framework/schema/suites.exsd @@ -13,7 +13,7 @@ - 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>. + 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. @@ -60,7 +60,7 @@ - The class of the test suite. This must be an extension of <code>junit.framework.TestSuite</code>. + 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>. @@ -91,7 +91,7 @@ - + The name of the argument given to a test suite provider. @@ -108,14 +108,14 @@ - + 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.