Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 246111 | Differences between
and this patch

Collapse All | Expand All

(-)src-recorder/org/eclipse/tptp/test/provisional/recorder/ui/wizards/RecLocationWizardPage.java (-2 / +4 lines)
Lines 14-20 Link Here
14
import org.eclipse.core.resources.IFile;
14
import org.eclipse.core.resources.IFile;
15
import org.eclipse.hyades.internal.execution.testgen.ui.wizards.FileLocationSelectionWizardpage;
15
import org.eclipse.hyades.internal.execution.testgen.ui.wizards.FileLocationSelectionWizardpage;
16
import org.eclipse.hyades.test.ui.TestUIImages;
16
import org.eclipse.hyades.test.ui.TestUIImages;
17
import org.eclipse.hyades.test.ui.UiPlugin;
17
import org.eclipse.hyades.test.ui.internal.resources.UiPluginResourceBundle;
18
import org.eclipse.hyades.test.ui.internal.resources.UiPluginResourceBundle;
19
import org.eclipse.hyades.test.ui.internal.util.ContextIds;
18
import org.eclipse.swt.graphics.Image;
20
import org.eclipse.swt.graphics.Image;
19
/**
21
/**
20
 * <p>A wizard page implementation for specifying a recording location.</p>
22
 * <p>A wizard page implementation for specifying a recording location.</p>
Lines 22-28 Link Here
22
 *
24
 *
23
 * @author  Jeffrey Nevicosi
25
 * @author  Jeffrey Nevicosi
24
 * @author  Paul E. Slauenwhite
26
 * @author  Paul E. Slauenwhite
25
 * @version March 27, 2009
27
 * @version March 31, 2009
26
 * @since   February 1, 2006
28
 * @since   February 1, 2006
27
 * @see     FileLocationSelectionWizardpage
29
 * @see     FileLocationSelectionWizardpage
28
 * @see     IGenericRecorderPage
30
 * @see     IGenericRecorderPage
Lines 87-93 Link Here
87
	 * @see org.eclipse.hyades.internal.execution.testgen.ui.wizards.ITestGenWizardPage#getContextHelpID()
89
	 * @see org.eclipse.hyades.internal.execution.testgen.ui.wizards.ITestGenWizardPage#getContextHelpID()
88
	 */
90
	 */
89
	public String getContextHelpID() {		
91
	public String getContextHelpID() {		
90
		return "org.eclipse.tptp.test.internal.recorder.ui.wizards.RecLocationWizardPage";
92
		return (UiPlugin.getID() + ContextIds.NEW_TEST_FROM_RECORDING_WIZARD);
91
	}
93
	}
92
94
93
	/* (non-Javadoc)
95
	/* (non-Javadoc)
(-)src-recorder/org/eclipse/tptp/test/provisional/recorder/ui/wizards/TestsuiteLocationWizardPage.java (-2 / +4 lines)
Lines 14-20 Link Here
14
import org.eclipse.core.resources.IContainer;
14
import org.eclipse.core.resources.IContainer;
15
import org.eclipse.core.runtime.Path;
15
import org.eclipse.core.runtime.Path;
16
import org.eclipse.hyades.internal.execution.testgen.ui.wizards.FileLocationSelectionWizardpage;
16
import org.eclipse.hyades.internal.execution.testgen.ui.wizards.FileLocationSelectionWizardpage;
17
import org.eclipse.hyades.test.ui.UiPlugin;
17
import org.eclipse.hyades.test.ui.internal.resources.UiPluginResourceBundle;
18
import org.eclipse.hyades.test.ui.internal.resources.UiPluginResourceBundle;
19
import org.eclipse.hyades.test.ui.internal.util.ContextIds;
18
import org.eclipse.jdt.core.JavaCore;
20
import org.eclipse.jdt.core.JavaCore;
19
import org.eclipse.jface.viewers.IStructuredSelection;
21
import org.eclipse.jface.viewers.IStructuredSelection;
20
import org.eclipse.swt.widgets.Composite;
22
import org.eclipse.swt.widgets.Composite;
Lines 25-31 Link Here
25
 * 
27
 * 
26
 * @author  Paul E. Slauenwhite
28
 * @author  Paul E. Slauenwhite
27
 * @author  Jeffery Nevicosi
29
 * @author  Jeffery Nevicosi
28
 * @version March 27, 2009
30
 * @version March 31, 2009
29
 * @since   February 1, 2006
31
 * @since   February 1, 2006
30
 */
32
 */
31
public class TestsuiteLocationWizardPage extends FileLocationSelectionWizardpage implements IGenericRecorderPage {
33
public class TestsuiteLocationWizardPage extends FileLocationSelectionWizardpage implements IGenericRecorderPage {
Lines 104-110 Link Here
104
	 * @see org.eclipse.hyades.internal.execution.testgen.ui.wizards.ITestGenWizardPage#getContextHelpID()
106
	 * @see org.eclipse.hyades.internal.execution.testgen.ui.wizards.ITestGenWizardPage#getContextHelpID()
105
	 */
107
	 */
106
	public String getContextHelpID() {		
108
	public String getContextHelpID() {		
107
		return "org.eclipse.tptp.test.internal.recorder.ui.wizards.TestsuiteLocationWizardPage";
109
		return (UiPlugin.getID() + ContextIds.NEW_TEST_FROM_RECORDING_WIZARD);
108
	}
110
	}
109
111
110
	/* (non-Javadoc)
112
	/* (non-Javadoc)
(-)src-recorder/org/eclipse/hyades/internal/execution/recorder/ui/views/RecorderControlView.java (-4 / +6 lines)
Lines 22-27 Link Here
22
import org.eclipse.hyades.test.core.testgen.ITestgenListener;
22
import org.eclipse.hyades.test.core.testgen.ITestgenListener;
23
import org.eclipse.hyades.test.ui.UiPlugin;
23
import org.eclipse.hyades.test.ui.UiPlugin;
24
import org.eclipse.hyades.test.ui.internal.resources.UiPluginResourceBundle;
24
import org.eclipse.hyades.test.ui.internal.resources.UiPluginResourceBundle;
25
import org.eclipse.hyades.test.ui.internal.util.ContextIds;
25
import org.eclipse.jface.action.GroupMarker;
26
import org.eclipse.jface.action.GroupMarker;
26
import org.eclipse.jface.action.ToolBarManager;
27
import org.eclipse.jface.action.ToolBarManager;
27
import org.eclipse.jface.dialogs.ErrorDialog;
28
import org.eclipse.jface.dialogs.ErrorDialog;
Lines 51-64 Link Here
51
import org.eclipse.ui.part.ViewPart;
52
import org.eclipse.ui.part.ViewPart;
52
53
53
/**
54
/**
54
 * Recorder Control View for receiving feedback and controlling recorders during recording.
55
 * <p>Recorder Control View for receiving feedback and controlling recorders during recording.</p>
55
 * <p/>
56
 * 
56
 * 
57
 * 
57
 * 
58
 * @author  Ernest Jessee
58
 * @author  Ernest Jessee
59
 * @author  Paul E. Slauenwhite
59
 * @author  Paul E. Slauenwhite
60
 * @author  Paul Klicnik
60
 * @author  Paul Klicnik
61
 * @version January 19, 2009
61
 * @version March 31, 2009
62
 * @since   February 1, 2005
62
 * @since   February 1, 2005
63
 */
63
 */
64
public class RecorderControlView extends ViewPart implements ITestgenListener, IRecorderListenerFullFeedback 
64
public class RecorderControlView extends ViewPart implements ITestgenListener, IRecorderListenerFullFeedback 
Lines 111-117 Link Here
111
		int heightHint = fm.getHeight() + fm.getAscent() + fm.getDescent();
111
		int heightHint = fm.getHeight() + fm.getAscent() + fm.getDescent();
112
		int widthHint = fm.getAverageCharWidth() * 50;
112
		int widthHint = fm.getAverageCharWidth() * 50;
113
		Composite parent = new Composite(grandParent,SWT.NULL);
113
		Composite parent = new Composite(grandParent,SWT.NULL);
114
		PlatformUI.getWorkbench().getHelpSystem().setHelp(parent,"org.eclipse.hyades.execution.recorder.RecorderControlView"); //$NON-NLS-1$
114
115
		//Set the context sensitive help:
116
		PlatformUI.getWorkbench().getHelpSystem().setHelp(parent, UiPlugin.getID() + ContextIds.RECORDER_CONTROL_VIEW);
115
		
117
		
116
		RecorderUIUtility.assignGridLayout(parent,1, false);
118
		RecorderUIUtility.assignGridLayout(parent,1, false);
117
		Canvas bytesReceivedCanvas = new Canvas(parent,SWT.NULL);
119
		Canvas bytesReceivedCanvas = new Canvas(parent,SWT.NULL);
(-)src/org/eclipse/hyades/test/ui/internal/util/ContextIds.java (-8 / +10 lines)
Lines 1-5 Link Here
1
/**********************************************************************
1
/**********************************************************************
2
 * Copyright (c) 2005, 2008 IBM Corporation and others.
2
 * Copyright (c) 2005, 2009 IBM Corporation and others.
3
 * All rights reserved.   This program and the accompanying materials
3
 * All rights reserved.   This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 12-29 Link Here
12
package org.eclipse.hyades.test.ui.internal.util;
12
package org.eclipse.hyades.test.ui.internal.util;
13
13
14
/**
14
/**
15
 * Context IDs
15
 * <p>Context IDs.</p>
16
 * <p>
17
 * 
16
 * 
18
 * 
17
 * 
19
 * @author      Paul E. Slauenwhite
18
 * @author  Paul E. Slauenwhite
20
 * @version     May 16, 2008
19
 * @version March 31, 2009
21
 * @since       February 1, 2005
20
 * @since   February 1, 2005
22
 */
21
 */
23
public class ContextIds {
22
public class ContextIds {
24
23
25
	//New test from recording wizard:
24
	//Create New Test From Recording wizard:
26
	public static final String REC_WIZ = ".recw0001"; //$NON-NLS-1$
25
	public static final String NEW_TEST_FROM_RECORDING_WIZARD = ".recw0001"; //$NON-NLS-1$
26
	
27
	//Recorder Control view:
28
	public static final String RECORDER_CONTROL_VIEW = ".recv0001"; //$NON-NLS-1$
27
29
28
	//New resource wizard:
30
	//New resource wizard:
29
	public static final String RES_WIZ = ".resw0001"; //$NON-NLS-1$
31
	public static final String RES_WIZ = ".resw0001"; //$NON-NLS-1$
(-)src-testgen/org/eclipse/hyades/internal/execution/testgen/ui/wizards/TestSuiteLocationSelectionPage.java (-4 / +8 lines)
Lines 12-18 Link Here
12
package org.eclipse.hyades.internal.execution.testgen.ui.wizards;
12
package org.eclipse.hyades.internal.execution.testgen.ui.wizards;
13
13
14
import org.eclipse.core.resources.IContainer;
14
import org.eclipse.core.resources.IContainer;
15
import org.eclipse.hyades.test.ui.UiPlugin;
15
import org.eclipse.hyades.test.ui.internal.resources.UiPluginResourceBundle;
16
import org.eclipse.hyades.test.ui.internal.resources.UiPluginResourceBundle;
17
import org.eclipse.hyades.test.ui.internal.util.ContextIds;
16
import org.eclipse.jdt.core.JavaCore;
18
import org.eclipse.jdt.core.JavaCore;
17
19
18
/**
20
/**
Lines 21-27 Link Here
21
 * 
23
 * 
22
 * @author  Paul E. Slauenwhite
24
 * @author  Paul E. Slauenwhite
23
 * @author  Ernest Jessee
25
 * @author  Ernest Jessee
24
 * @version March 27, 2009
26
 * @version March 31, 2009
25
 * @since   February 1, 2005
27
 * @since   February 1, 2005
26
 */
28
 */
27
public class TestSuiteLocationSelectionPage extends FileLocationSelectionWizardpage
29
public class TestSuiteLocationSelectionPage extends FileLocationSelectionWizardpage
Lines 62-70 Link Here
62
		return UiPluginResourceBundle.NewRecordingWizardPage_TITLE; 
64
		return UiPluginResourceBundle.NewRecordingWizardPage_TITLE; 
63
	}
65
	}
64
66
65
	public String getContextHelpID()
67
	/* (non-Javadoc)
66
	{
68
	 * @see org.eclipse.hyades.internal.execution.testgen.ui.wizards.ITestGenWizardPage#getContextHelpID()
67
		return "org.eclipse.hyades.execution.testgen.TestSuitePathSelector"; //$NON-NLS-1$
69
	 */
70
	public String getContextHelpID(){
71
		return (UiPlugin.getID() + ContextIds.NEW_TEST_FROM_RECORDING_WIZARD);
68
	}
72
	}
69
73
70
	/**
74
	/**
(-)src-testgen/org/eclipse/hyades/internal/execution/testgen/ui/wizards/TestGeneratorSelectorPage.java (-8 / +8 lines)
Lines 16-21 Link Here
16
import org.eclipse.hyades.test.core.testgen.TestGeneratorFactory;
16
import org.eclipse.hyades.test.core.testgen.TestGeneratorFactory;
17
import org.eclipse.hyades.test.ui.UiPlugin;
17
import org.eclipse.hyades.test.ui.UiPlugin;
18
import org.eclipse.hyades.test.ui.internal.resources.UiPluginResourceBundle;
18
import org.eclipse.hyades.test.ui.internal.resources.UiPluginResourceBundle;
19
import org.eclipse.hyades.test.ui.internal.util.ContextIds;
19
import org.eclipse.jface.wizard.WizardPage;
20
import org.eclipse.jface.wizard.WizardPage;
20
import org.eclipse.swt.SWT;
21
import org.eclipse.swt.SWT;
21
import org.eclipse.swt.layout.GridData;
22
import org.eclipse.swt.layout.GridData;
Lines 27-36 Link Here
27
 * <p>Wizard page which prompts the user for the test generator to use in generating a test.</p>
28
 * <p>Wizard page which prompts the user for the test generator to use in generating a test.</p>
28
 * 
29
 * 
29
 * 
30
 * 
30
 * @author      Paul E. Slauenwhite
31
 * @author  Paul E. Slauenwhite
31
 * @author      Ernest Jessee
32
 * @author  Ernest Jessee
32
 * @version     March 27, 2009
33
 * @version March 31, 2009
33
 * @since       February 1, 2005
34
 * @since   February 1, 2005
34
 */
35
 */
35
public class TestGeneratorSelectorPage extends WizardPage implements ITestGenWizardPage
36
public class TestGeneratorSelectorPage extends WizardPage implements ITestGenWizardPage
36
{
37
{
Lines 43-53 Link Here
43
	}
44
	}
44
	
45
	
45
	/* (non-Javadoc)
46
	/* (non-Javadoc)
46
	 * @see org.eclipse.hyades.execution.testgen.ui.wizards.ITestGenWizardPage#getContextHelpID()
47
	 * @see org.eclipse.hyades.internal.execution.testgen.ui.wizards.ITestGenWizardPage#getContextHelpID()
47
	 */
48
	 */
48
	public String getContextHelpID()
49
	public String getContextHelpID(){
49
	{
50
		return (UiPlugin.getID() + ContextIds.NEW_TEST_FROM_RECORDING_WIZARD);
50
		return "org.eclipse.hyades.execution.testgen.GeneratorSelectorPage"; //$NON-NLS-1$
51
	}
51
	}
52
52
53
	/* (non-Javadoc)
53
	/* (non-Javadoc)
(-)src-recorder/org/eclipse/tptp/test/internal/recorder/ui/wizards/NewRecordingWizardPage.java (-10 / +8 lines)
Lines 1-5 Link Here
1
/*******************************************************************************
1
/*******************************************************************************
2
 * Copyright (c) 2005, 2008 IBM Corporation and others.
2
 * Copyright (c) 2005, 2009 IBM Corporation and others.
3
 * All rights reserved. This program and the accompanying materials 
3
 * All rights reserved. This program and the accompanying materials 
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 47-63 Link Here
47
import org.eclipse.ui.PlatformUI;
47
import org.eclipse.ui.PlatformUI;
48
48
49
/**
49
/**
50
 * The first page of the Generic Recorder Framework (GRF) wizard.
50
 * <p>The first page of the Generic Recorder Framework (GRF) wizard.</p>
51
 * <p/>
51
 *
52
 * Allows users to create a new test from a new recording (e.g. "Launch" a
52
 * <p>Allows users to create a new test from a new recording (e.g. "Launch" a
53
 * Recorder) or from an existing recording (aka Generate Test).
53
 * Recorder) or from an existing recording (aka Generate Test).</p>
54
 * <p/>
55
 * Not intended to be subclassed.
56
 * 
54
 * 
57
 * 
55
 * 
58
 * @author  Jeffery Nevicosi
56
 * @author  Jeffery Nevicosi
59
 * @author  Paul E. Slauenwhite
57
 * @author  Paul E. Slauenwhite
60
 * @version May 16, 2008
58
 * @version March 31, 2009
61
 * @since   September 23, 2005
59
 * @since   September 23, 2005
62
 */
60
 */
63
public class NewRecordingWizardPage extends WizardPage implements
61
public class NewRecordingWizardPage extends WizardPage implements
Lines 109-116 Link Here
109
	 */
107
	 */
110
	public void createControl(Composite parent) {
108
	public void createControl(Composite parent) {
111
		
109
		
112
		//Set the context sensitive help for the wizard page:
110
		//Set the context sensitive help:
113
		PlatformUI.getWorkbench().getHelpSystem().setHelp(parent, UiPlugin.getID() + ContextIds.REC_WIZ);		
111
		PlatformUI.getWorkbench().getHelpSystem().setHelp(parent, UiPlugin.getID() + ContextIds.NEW_TEST_FROM_RECORDING_WIZARD);		
114
		
112
		
115
		setPageComplete(false);
113
		setPageComplete(false);
116
		setDescription(UiPluginResourceBundle.NewRecordingWizardPage_DESCRIPTION);
114
		setDescription(UiPluginResourceBundle.NewRecordingWizardPage_DESCRIPTION);
(-)infopop/recorderUI.xml (-22 / +9 lines)
Lines 1-6 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
2
<!--
3
Copyright (c) 2005, 2008 IBM Corporation and others. 
3
Copyright (c) 2005, 2009 IBM Corporation and others. 
4
All rights reserved.   This program and the accompanying materials 
4
All rights reserved.   This program and the accompanying materials 
5
are made available under the terms of the Eclipse Public License v1.0 
5
are made available under the terms of the Eclipse Public License v1.0 
6
which accompanies this distribution, and is available at 
6
which accompanies this distribution, and is available at 
Lines 11-39 Link Here
11
<?NLS TYPE="org.eclipse.help.contexts"?>
11
<?NLS TYPE="org.eclipse.help.contexts"?>
12
<contexts>
12
<contexts>
13
13
14
<!--Specify the pathname of the test suite container file-->
14
<!-- Create New Test From Recording wizard: -->
15
<context id="TestSuitePathSelector">
15
<context id="recw0001">
16
<description>Specify the pathname of the generated test suite</description>
16
<description>Create a new test from a new or existing recording of user interactions with an application.</description>
17
<topic href="../org.eclipse.hyades.test.doc.user/ref/enterTestsuitepath.htm" label="Generated test suite file location"/>
17
<topic href="../org.eclipse.hyades.test.doc.user/tasks/tcreatetestfromrecording.htm" label="Creating a test from a recording"/>
18
</context>
18
</context>
19
19
20
<!--Specify test generator to use-->
20
<!-- Recorder Control view: -->
21
<context id="GeneratorSelectorPage">
21
<context id="recv0001">
22
<description>Select the test generator</description>
22
<description>View to control and monitor recorders.</description>
23
<topic href="../org.eclipse.hyades.test.doc.user/ref/enterTestgenerator.htm" label="Test generator to use"/>
23
<topic href="../org.eclipse.hyades.test.doc.user/concepts/crecordercontrolview.htm" label="Recorder Control View"/>
24
</context>
25
26
<!--Specify the pathname of the session recording-->
27
<context id="RecordingLocationSelector">
28
<description>Specify the pathname of the generated test</description>
29
<topic href="../org.eclipse.hyades.test.doc.user/ref/enterRecordingpath.htm" label="Recorded session file location"/>
30
</context>
31
32
<!--Recording and generation progress viewer-->
33
<context id="RecorderControlView">
34
<description>View recording and script generation progress</description>
35
<!-- the following doc does not exist. Add back when available. -->
36
<!--topic href="../org.eclipse.hyades.test.doc.user/ref/topicUnderConst.htm" label="Progress monitor"/-->
37
</context>
24
</context>
38
25
39
</contexts>
26
</contexts>
(-)infopop/testUI.xml (-7 / +1 lines)
Lines 1-6 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
2
<!--
3
Copyright (c) 2005, 2008 IBM Corporation and others. 
3
Copyright (c) 2005, 2009 IBM Corporation and others. 
4
All rights reserved.   This program and the accompanying materials 
4
All rights reserved.   This program and the accompanying materials 
5
are made available under the terms of the Eclipse Public License v1.0 
5
are made available under the terms of the Eclipse Public License v1.0 
6
which accompanies this distribution, and is available at 
6
which accompanies this distribution, and is available at 
Lines 177-188 Link Here
177
<!--topic href="../org.eclipse.hyades.test.doc/tasks/tsetting_preferences.htm" label="Setting Test preferences"/-->
177
<!--topic href="../org.eclipse.hyades.test.doc/tasks/tsetting_preferences.htm" label="Setting Test preferences"/-->
178
</context>
178
</context>
179
179
180
<context id="recw0001">
181
<!--New test from recording wizard content-->
182
<description>Select the recorder to create a new recording and test or create a new test from an existing recording.</description>
183
<topic href="../org.eclipse.tptp.test.recorders.url.doc.user/tasks/trecordtest.html" label="Creating a new test from a recording"/>
184
</context>
185
186
<context id="resw0001">
180
<context id="resw0001">
187
<!--New resource wizard content-->
181
<!--New resource wizard content-->
188
<description>Select an existing resource in the workspace or create a new resource in the workspace.</description>
182
<description>Select an existing resource in the workspace or create a new resource in the workspace.</description>
(-)plugin.xml (-7 / +7 lines)
Lines 37-49 Link Here
37
   <extension-point id="testNavigatorRefactoringTransactions" name="Test Navigator Refactoring Transactions" schema="schema/testNavigatorRefactoringTransactions.exsd"/>
37
   <extension-point id="testNavigatorRefactoringTransactions" name="Test Navigator Refactoring Transactions" schema="schema/testNavigatorRefactoringTransactions.exsd"/>
38
38
39
   <extension point="org.eclipse.help.contexts">
39
   <extension point="org.eclipse.help.contexts">
40
	    <contexts file="infopop\hyadesUI.xml" plugin ="org.eclipse.hyades.ui"/>
40
	    <contexts file="infopop\hyadesUI.xml"/>
41
	    <contexts file="infopop\testUI.xml" plugin ="org.eclipse.hyades.test.ui"/>	
41
	    <contexts file="infopop\testUI.xml"/>	
42
	    <contexts file="infopop\testDatapool.xml" plugin="org.eclipse.hyades.test.ui"/>	
42
	    <contexts file="infopop\testDatapool.xml"/>	
43
	    <contexts file="infopop\testJava.xml" plugin ="org.eclipse.hyades.test.java"/>	
43
	    <contexts file="infopop\testJava.xml"/>	
44
	    <contexts file="infopop\testCommon.xml" plugin ="org.eclipse.hyades.test.common"/>  
44
	    <contexts file="infopop\testCommon.xml"/>  
45
	    <contexts file="infopop\recorderUI.xml" plugin ="org.eclipse.hyades.execution.testgen"/>		
45
	    <contexts file="infopop\recorderUI.xml"/>		
46
        <contexts file="infopop\recorderUI.xml" plugin ="org.eclipse.hyades.execution.recorder.harness"/>	
46
        <contexts file="infopop\recorderUI.xml"/>	
47
   </extension>
47
   </extension>
48
    
48
    
49
   <extension
49
   <extension
(-)src-ui/org/eclipse/tptp/test/recorders/url/ui/internal/wizards/URLRecorderNoProjectsWizardPage.java (-21 / +7 lines)
Lines 1-5 Link Here
1
/**********************************************************************
1
/**********************************************************************
2
 * Copyright (c) 2008 IBM Corporation and others.
2
 * Copyright (c) 2008, 2009 IBM Corporation and others.
3
 * All rights reserved.   This program and the accompanying materials
3
 * All rights reserved.   This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
5
 * which accompanies this distribution, and is available at
Lines 22-28 Link Here
22
import org.eclipse.core.runtime.IProgressMonitor;
22
import org.eclipse.core.runtime.IProgressMonitor;
23
import org.eclipse.core.runtime.Path;
23
import org.eclipse.core.runtime.Path;
24
import org.eclipse.hyades.internal.execution.recorder.ui.RecorderUIUtility;
24
import org.eclipse.hyades.internal.execution.recorder.ui.RecorderUIUtility;
25
import org.eclipse.hyades.internal.execution.recorder.ui.wizards.IRecorderWizardPage;
26
import org.eclipse.jdt.core.IClasspathEntry;
25
import org.eclipse.jdt.core.IClasspathEntry;
27
import org.eclipse.jdt.core.IJavaProject;
26
import org.eclipse.jdt.core.IJavaProject;
28
import org.eclipse.jdt.core.JavaCore;
27
import org.eclipse.jdt.core.JavaCore;
Lines 39-61 Link Here
39
import org.eclipse.tptp.test.provisional.recorder.ui.wizards.IGenericRecorderPage;
38
import org.eclipse.tptp.test.provisional.recorder.ui.wizards.IGenericRecorderPage;
40
import org.eclipse.tptp.test.provisional.recorder.ui.wizards.IGenericRecorderWizard;
39
import org.eclipse.tptp.test.provisional.recorder.ui.wizards.IGenericRecorderWizard;
41
import org.eclipse.tptp.test.provisional.recorder.ui.wizards.IRecorderPageProvider;
40
import org.eclipse.tptp.test.provisional.recorder.ui.wizards.IRecorderPageProvider;
42
import org.eclipse.tptp.test.recorders.url.internal.URLRecorderActivator;
43
import org.eclipse.tptp.test.recorders.url.ui.internal.help.URLRecorderContextIDs;
44
import org.eclipse.tptp.test.recorders.url.ui.internal.resources.URLRecorderUIResourceBundle;
41
import org.eclipse.tptp.test.recorders.url.ui.internal.resources.URLRecorderUIResourceBundle;
45
import org.eclipse.ui.dialogs.WizardNewProjectCreationPage;
42
import org.eclipse.ui.dialogs.WizardNewProjectCreationPage;
46
43
47
/**
44
/**
48
 * URL recorder no projects page.
45
 * <p>URL recorder no projects page.</p>
49
 * <p/>
50
 * 
46
 * 
51
 * 
47
 * 
52
 * @author  Paul E. Slauenwhite
48
 * @author  Paul E. Slauenwhite
53
 * @author  Jerffery Nevicosi
49
 * @author  Jerffery Nevicosi
54
 * @version March 11, 2008
50
 * @version March 31, 2009
55
 * @since   March 11, 2008
51
 * @since   March 11, 2008
56
 */
52
 */
57
public class URLRecorderNoProjectsWizardPage extends WizardNewProjectCreationPage 
53
public class URLRecorderNoProjectsWizardPage extends WizardNewProjectCreationPage implements IGenericRecorderPage {
58
	implements IRecorderWizardPage, IGenericRecorderPage {
59
54
60
	private Text recFileText;
55
	private Text recFileText;
61
56
Lines 146-162 Link Here
146
	}
141
	}
147
142
148
	/* (non-Javadoc)
143
	/* (non-Javadoc)
149
	 * @see org.eclipse.hyades.internal.execution.testgen.ui.wizards.ITestGenWizardPage#getContextHelpID()
144
	 * @see org.eclipse.tptp.test.provisional.recorder.ui.wizards.IGenericRecorderPage#saveSettings()
150
	 */
151
	public String getContextHelpID() {		
152
		return (URLRecorderActivator.PLUGIN_ID + URLRecorderContextIDs.RECORDING_LOCATION_SELECTOR); //$NON-NLS-1$
153
	}
154
155
	/* (non-Javadoc)
156
	 * @see org.eclipse.hyades.internal.execution.testgen.ui.wizards.ITestGenWizardPage#saveSettings()
157
	 */
145
	 */
158
	public void saveSettings() {
146
	public void saveSettings() {
159
147
		//No-operation.
160
	}
148
	}
161
149
162
	/* (non-Javadoc)
150
	/* (non-Javadoc)
Lines 308-314 Link Here
308
	 */
296
	 */
309
	public Object getRecorderObjectData(String key) {
297
	public Object getRecorderObjectData(String key) {
310
		return null;
298
		return null;
311
	}
299
	}	
312
	
313
	
314
}
300
}
(-)infopop/urlRecorder.xml (-5 / +6 lines)
Lines 1-6 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!--
2
<!--
3
Copyright (c) 2008 IBM Corporation and others. 
3
Copyright (c) 2008, 2009 IBM Corporation and others. 
4
All rights reserved.   This program and the accompanying materials 
4
All rights reserved.   This program and the accompanying materials 
5
are made available under the terms of the Eclipse Public License v1.0 
5
are made available under the terms of the Eclipse Public License v1.0 
6
which accompanies this distribution, and is available at 
6
which accompanies this distribution, and is available at 
Lines 13-22 Link Here
13
<?NLS TYPE="org.eclipse.help.contexts"?>
13
<?NLS TYPE="org.eclipse.help.contexts"?>
14
<contexts>
14
<contexts>
15
15
16
<!--Specify the pathname of the generate test-->
16
<!-- Create New Test From Recording wizard: -->
17
<context id="RecordingLocationSelector">
17
<!-- Note: Extends the org.eclipse.hyades.test.ui.recw0001 context ID: -->
18
<description>Specify the pathname of the generated test</description>
18
<context id="recw0001">
19
<topic href="../org.eclipse.hyades.test.doc.user/tasks/trecordtest.html" label="Generated test file location"/>
19
<description>Create a new performance test from a new or existing URL recording of user interactions with a Web browser application.</description>
20
<topic href="../org.eclipse.tptp.test.recorders.url.doc.user/tasks/tcreatetestfromurlrecording.htm" label="Creating a test from a URL recording"/>
20
</context>
21
</context>
21
22
22
</contexts>
23
</contexts>
(-)plugin.xml (-2 / +2 lines)
Lines 1-7 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!-- 
2
<!-- 
3
/**********************************************************************
3
/**********************************************************************
4
 * Copyright (c) 2008 IBM Corporation and others.
4
 * Copyright (c) 2008, 2009 IBM Corporation and others.
5
 * All rights reserved. This content is made available under 
5
 * All rights reserved. This content is made available under 
6
 * the terms of the Eclipse Public License v1.0
6
 * the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
7
 * which accompanies this distribution, and is available at
Lines 25-31 Link Here
25
   	</extension>
25
   	</extension>
26
26
27
   <extension point="org.eclipse.help.contexts">
27
   <extension point="org.eclipse.help.contexts">
28
	    <contexts file="infopop\urlRecorder.xml"/>		
28
	    <contexts file="infopop\urlRecorder.xml" plugin="org.eclipse.hyades.test.ui"/>		
29
   </extension>
29
   </extension>
30
30
31
    <extension
31
    <extension
(-)plugin.properties (-1 / +1 lines)
Lines 24-30 Link Here
24
24
25
# plugin.xml messages:
25
# plugin.xml messages:
26
URL_RECORDER_NAME				= URL Recorder
26
URL_RECORDER_NAME				= URL Recorder
27
URL_RECORDER_DESCRIPTION		= Creates a TPTP URL Test from a HTTP protocol recording of URLs entered in a Web browser application.
27
URL_RECORDER_DESCRIPTION		= Creates a TPTP URL Test from a HTTP protocol recording of URLs entered and links navigated in a Web browser application.
28
URL_Test_Generator_Name         = TPTP URL Test Generator
28
URL_Test_Generator_Name         = TPTP URL Test Generator
29
Internet_Explorer				= Internet Explorer
29
Internet_Explorer				= Internet Explorer
30
Mozilla							= Mozilla
30
Mozilla							= Mozilla
(-)tasks/tcreatetestdeployment.htm (-4 / +4 lines)
Lines 2-8 Link Here
2
<html lang="en-us" xml:lang="en-us">
2
<html lang="en-us" xml:lang="en-us">
3
<!-- 
3
<!-- 
4
/**********************************************************************
4
/**********************************************************************
5
 * Copyright (c) 2006, 2008 Scapa Technologies and others.
5
 * Copyright (c) 2006, 2009 Scapa Technologies and others.
6
 * All rights reserved. This content is made available under 
6
 * All rights reserved. This content is made available under 
7
 * the terms of the Eclipse Public License v1.0
7
 * the terms of the Eclipse Public License v1.0
8
 * which accompanies this distribution, and is available at
8
 * which accompanies this distribution, and is available at
Lines 27-38 Link Here
27
27
28
<p>Test deployments pair test artifacts and test locations for executing a test suite.</p>
28
<p>Test deployments pair test artifacts and test locations for executing a test suite.</p>
29
29
30
<p>Create a test deployment:</p>
30
<p>Test deployments are created with the <b>New Deployment</b> wizard:</p>
31
31
32
<ol>
32
<ol>
33
	<li>Right-click in the Test Navigator and select <b>New</b> &gt; <b>Test Element...</b>.</li>
33
	<li>Right-click in the Test Navigator and select <b>New</b> &gt; <b>Test Element...</b>.</li>
34
	<li>Select <b>Test Assets</b> &gt; <b>Deployment</b> and click <b>Next</b>.</li>
34
	<li>Select <b>Test Assets</b> &gt; <b>Deployment</b> and click <b>Next</b>.</li>
35
    <li>Provide the parent folder and the name for the test deployment and click <b>Next</b>.</li>
35
    <li>Select the parent folder and define the name of the test deployment and click <b>Next</b>.</li>
36
    <li>Optionally, provide a description for the test deployment and click <b>Next</b>.</li>
36
    <li>Optionally, provide a description for the test deployment and click <b>Next</b>.</li>
37
    <li>Select or create the associated test artifacts by clicking the <b>New...</b> button and 
37
    <li>Select or create the associated test artifacts by clicking the <b>New...</b> button and 
38
    selecting the test artifacts or creating a <a href="tcreateartifact.htm">new test artifact</a>.
38
    selecting the test artifacts or creating a <a href="tcreateartifact.htm">new test artifact</a>.
Lines 51-57 Link Here
51
51
52
<p>
52
<p>
53
<b>Related concepts</b><br/>
53
<b>Related concepts</b><br/>
54
<a href="../concepts/cdeployeditor.htm">Editing a deployment</a><br/>
54
<a href="../concepts/cdeployeditor.htm">Deployment Editor</a><br/>
55
</p>
55
</p>
56
56
57
<p>
57
<p>
(-)tasks/trun.htm (-2 / +2 lines)
Lines 2-8 Link Here
2
<html lang="en-us" xml:lang="en-us">
2
<html lang="en-us" xml:lang="en-us">
3
<!-- 
3
<!-- 
4
/**********************************************************************
4
/**********************************************************************
5
 * Copyright (c) 2000, 2008 Scapa Technologies.
5
 * Copyright (c) 2000, 2009 Scapa Technologies.
6
 * All rights reserved. This content is made available under 
6
 * All rights reserved. This content is made available under 
7
 * the terms of the Eclipse Public License v1.0
7
 * the terms of the Eclipse Public License v1.0
8
 * which accompanies this distribution, and is available at
8
 * which accompanies this distribution, and is available at
Lines 74-80 Link Here
74
74
75
<p>
75
<p>
76
<b>Related concepts</b><br/>
76
<b>Related concepts</b><br/>
77
<a href="../concepts/cdeployeditor.htm">Editing a deployment</a><br/>
77
<a href="../concepts/cdeployeditor.htm">Deployment Editor</a><br/>
78
</p>
78
</p>
79
79
80
<p>
80
<p>
(-)tasks/tdeploymentintro.htm (-4 / +4 lines)
Lines 2-8 Link Here
2
<html lang="en-us" xml:lang="en-us">
2
<html lang="en-us" xml:lang="en-us">
3
<!-- 
3
<!-- 
4
/**********************************************************************
4
/**********************************************************************
5
 * Copyright (c) 2006, 2008 Scapa Technologies and others.
5
 * Copyright (c) 2006, 2009 Scapa Technologies and others.
6
 * All rights reserved. This content is made available under 
6
 * All rights reserved. This content is made available under 
7
 * the terms of the Eclipse Public License v1.0
7
 * the terms of the Eclipse Public License v1.0
8
 * which accompanies this distribution, and is available at
8
 * which accompanies this distribution, and is available at
Lines 48-56 Link Here
48
48
49
<p>
49
<p>
50
<b>Related concepts</b><br/>
50
<b>Related concepts</b><br/>
51
<a href="../concepts/cartifacteditor.htm">Editing an artifact</a><br/>
51
<a href="../concepts/cartifacteditor.htm">Artifact Editor</a><br/>
52
<a href="../concepts/clocationeditor.htm">Editing a location</a><br/>
52
<a href="../concepts/clocationeditor.htm">Location Editor</a><br/>
53
<a href="../concepts/cdeployeditor.htm">Editing a deployment</a><br/>
53
<a href="../concepts/cdeployeditor.htm">Deployment Editor</a><br/>
54
</p>
54
</p>
55
55
56
</body>
56
</body>
(-)tasks/tcreateartifact.htm (-4 / +4 lines)
Lines 2-8 Link Here
2
<html lang="en-us" xml:lang="en-us">
2
<html lang="en-us" xml:lang="en-us">
3
<!-- 
3
<!-- 
4
/**********************************************************************
4
/**********************************************************************
5
 * Copyright (c) 2006, 2008 IBM Corporation.
5
 * Copyright (c) 2006, 2009 IBM Corporation.
6
 * All rights reserved. This content is made available under 
6
 * All rights reserved. This content is made available under 
7
 * the terms of the Eclipse Public License v1.0
7
 * the terms of the Eclipse Public License v1.0
8
 * which accompanies this distribution, and is available at
8
 * which accompanies this distribution, and is available at
Lines 26-37 Link Here
26
26
27
<p>Test artifacts associate test assets, such as test suites and datapools, with a test deployment.</p>
27
<p>Test artifacts associate test assets, such as test suites and datapools, with a test deployment.</p>
28
28
29
<p>Create a test artifact:</p>
29
<p>Test artifacts are created with the <b>New Artifact</b> wizard:</p>
30
30
31
<ol>
31
<ol>
32
	<li>Right-click in the Test Navigator and select <b>New</b> &gt; <b>Test Element...</b>.</li>
32
	<li>Right-click in the Test Navigator and select <b>New</b> &gt; <b>Test Element...</b>.</li>
33
	<li>Select <b>Test Assets</b> &gt; <b>Artifact</b> and click <b>Next</b>.</li>
33
	<li>Select <b>Test Assets</b> &gt; <b>Artifact</b> and click <b>Next</b>.</li>
34
    <li>Provide the parent folder and the name for the test artifact and click <b>Next</b>.</li>
34
    <li>Select the parent folder and define the name of the test artifact and click <b>Next</b>.</li>
35
    <li>Optionally, provide a description for the test artifact and click <b>Next</b>.</li>
35
    <li>Optionally, provide a description for the test artifact and click <b>Next</b>.</li>
36
    <li>Select the associated test assets, such as test suites and datapools.</li>
36
    <li>Select the associated test assets, such as test suites and datapools.</li>
37
    <li>Click <b>Finish</b> to create the test artifact.</li>
37
    <li>Click <b>Finish</b> to create the test artifact.</li>
Lines 40-46 Link Here
40
40
41
<p>
41
<p>
42
<b>Related concepts</b><br/>
42
<b>Related concepts</b><br/>
43
<a href="../concepts/cartifacteditor.htm">Editing an artifact</a><br/>
43
<a href="../concepts/cartifacteditor.htm">Artifact Editor</a><br/>
44
</p>
44
</p>
45
45
46
<p>
46
<p>
(-)tasks/tcreateperformancetestreports.htm (-2 / +2 lines)
Lines 3-9 Link Here
3
<html lang="en-us" xml:lang="en-us">
3
<html lang="en-us" xml:lang="en-us">
4
<!-- 
4
<!-- 
5
/**********************************************************************
5
/**********************************************************************
6
 * Copyright (c) 2007, 2008 IBM Corporation.
6
 * Copyright (c) 2007, 2009 IBM Corporation.
7
 * All rights reserved.   This content
7
 * All rights reserved.   This content
8
 * is made available under the terms of the Eclipse Public License v1.0
8
 * is made available under the terms of the Eclipse Public License v1.0
9
 * which accompanies this distribution, and is available at
9
 * which accompanies this distribution, and is available at
Lines 80-86 Link Here
80
<ol>
80
<ol>
81
  <li>Right-click on a performance test suite in the Test Navigator and select <b>Report... </b>.</li>
81
  <li>Right-click on a performance test suite in the Test Navigator and select <b>Report... </b>.</li>
82
  <li>Select one of the performance test report types and click <b>Next </b>.</li>
82
  <li>Select one of the performance test report types and click <b>Next </b>.</li>
83
  <li>Provide the parent folder and the name for the performance test report and click <b>Next</b>.</li>
83
  <li>Select the parent folder and define the name of the performance test report and click <b>Next</b>.</li>
84
  <li>Optionally, provide the report window (start and end data and time) for the performance test report.</li>
84
  <li>Optionally, provide the report window (start and end data and time) for the performance test report.</li>
85
  <li>Click <b>Finish </b> to generate the performance test report.</li>
85
  <li>Click <b>Finish </b> to generate the performance test report.</li>
86
  <li>The <b>Confirm Open Editor</b> dialog may appear (see the <b>Window</b> &gt; <b>Preferences...</b> &gt; <b>Test</b> &gt; <b>Open Editor</b> preference), confirming if the new performance test report is to be opened in the internal Web Browser.</li>	
86
  <li>The <b>Confirm Open Editor</b> dialog may appear (see the <b>Window</b> &gt; <b>Preferences...</b> &gt; <b>Test</b> &gt; <b>Open Editor</b> preference), confirming if the new performance test report is to be opened in the internal Web Browser.</li>	
(-)tasks/tcreatetestreports.htm (-2 / +2 lines)
Lines 2-8 Link Here
2
<html lang="en-us" xml:lang="en-us">
2
<html lang="en-us" xml:lang="en-us">
3
<!-- 
3
<!-- 
4
/**********************************************************************
4
/**********************************************************************
5
 * Copyright (c) 2007, 2008 IBM Corporation.
5
 * Copyright (c) 2007, 2009 IBM Corporation.
6
 * All rights reserved.   This content
6
 * All rights reserved.   This content
7
 * is made available under the terms of the Eclipse Public License v1.0
7
 * is made available under the terms of the Eclipse Public License v1.0
8
 * which accompanies this distribution, and is available at
8
 * which accompanies this distribution, and is available at
Lines 66-72 Link Here
66
<ol>
66
<ol>
67
  <li>Right-click on a test suite in the Test Navigator and select <b>Report... </b>.</li>
67
  <li>Right-click on a test suite in the Test Navigator and select <b>Report... </b>.</li>
68
  <li>Select one of the test report types and click <b>Next </b>.</li>
68
  <li>Select one of the test report types and click <b>Next </b>.</li>
69
  <li>Provide the parent folder and the name for the test report and click <b>Next</b>.</li>
69
  <li>Select the parent folder and define the name of the test report and click <b>Next</b>.</li>
70
  <li>Optionally, provide the report window (start and end data and time) for the test report.</li>
70
  <li>Optionally, provide the report window (start and end data and time) for the test report.</li>
71
  <li>Click <b>Finish </b> to generate the test report.</li>
71
  <li>Click <b>Finish </b> to generate the test report.</li>
72
  <li>The <b>Confirm Open Editor</b> dialog may appear (see the <b>Window</b> &gt; <b>Preferences...</b> &gt; <b>Test</b> &gt; <b>Open Editor</b> preference), confirming if the new test report is to be opened in the internal Web Browser.</li>	
72
  <li>The <b>Confirm Open Editor</b> dialog may appear (see the <b>Window</b> &gt; <b>Preferences...</b> &gt; <b>Test</b> &gt; <b>Open Editor</b> preference), confirming if the new test report is to be opened in the internal Web Browser.</li>	
(-)tasks/tcreatelocation.htm (-4 / +4 lines)
Lines 2-8 Link Here
2
<html lang="en-us" xml:lang="en-us">
2
<html lang="en-us" xml:lang="en-us">
3
<!-- 
3
<!-- 
4
/**********************************************************************
4
/**********************************************************************
5
 * Copyright (c) 2006, 2008 Scapa Technologies and others.
5
 * Copyright (c) 2006, 2009 Scapa Technologies and others.
6
 * All rights reserved. This content is made available under 
6
 * All rights reserved. This content is made available under 
7
 * the terms of the Eclipse Public License v1.0
7
 * the terms of the Eclipse Public License v1.0
8
 * which accompanies this distribution, and is available at
8
 * which accompanies this distribution, and is available at
Lines 28-39 Link Here
28
<p>Test locations associate a target host with a test deployment.  The test suite will be executed 
28
<p>Test locations associate a target host with a test deployment.  The test suite will be executed 
29
on the target host specified in the test location.</p>
29
on the target host specified in the test location.</p>
30
30
31
<p>Create a test location:</p>
31
<p>Test locations are created with the <b>New Location</b> wizard:</p>
32
32
33
<ol>
33
<ol>
34
	<li>Right-click in the Test Navigator and select <b>New</b> &gt; <b>Test Element...</b>.</li>
34
	<li>Right-click in the Test Navigator and select <b>New</b> &gt; <b>Test Element...</b>.</li>
35
	<li>Select <b>Test Assets</b> &gt; <b>Location</b> and click <b>Next</b>.</li>
35
	<li>Select <b>Test Assets</b> &gt; <b>Location</b> and click <b>Next</b>.</li>
36
    <li>Provide the parent folder and the name for the test location and click <b>Next</b>.</li>
36
    <li>Select the parent folder and define the name of the test location and click <b>Next</b>.</li>
37
    <li>Optionally, provide a description for the test location and click <b>Next</b>.</li>
37
    <li>Optionally, provide a description for the test location and click <b>Next</b>.</li>
38
    <li>Enter the host name or IP address of the target host. By default, <i>localhost</i> is entered.  Test the 
38
    <li>Enter the host name or IP address of the target host. By default, <i>localhost</i> is entered.  Test the 
39
    connection to the target host by clicking the <b>Test Connection</b> link<sup>1</sup>.</li>
39
    connection to the target host by clicking the <b>Test Connection</b> link<sup>1</sup>.</li>
Lines 47-53 Link Here
47
	    
47
	    
48
<p>
48
<p>
49
<b>Related concepts</b><br/>
49
<b>Related concepts</b><br/>
50
<a href="../concepts/clocationeditor.htm">Editing a location</a><br/>
50
<a href="../concepts/clocationeditor.htm">Location Editor</a><br/>
51
</p>
51
</p>
52
52
53
<p>
53
<p>
(-)plugin.xml (-26 / +10 lines)
Lines 1-7 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!-- 
2
<!-- 
3
/**********************************************************************
3
/**********************************************************************
4
 * Copyright (c) 2000, 2008 IBM Corporation.
4
 * Copyright (c) 2000, 2009 IBM Corporation.
5
 * All rights reserved.   This content
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
7
 * which accompanies this distribution, and is available at
Lines 15-44 Link Here
15
<?eclipse version="3.0"?>
15
<?eclipse version="3.0"?>
16
<plugin>
16
<plugin>
17
   <extension point="org.eclipse.help.toc">
17
   <extension point="org.eclipse.help.toc">
18
       <toc file="toc/comptest_toc.xml" primary="true" />
18
       <toc file="toc/testing_toc.xml" primary="true"/>
19
   </extension>
19
       <toc file="toc/test_recorders_toc.xml"/>
20
20
       <toc file="toc/test_datapools_toc.xml"/>
21
   <extension point="org.eclipse.help.toc">
21
       <toc file="toc/test_deployments_toc.xml"/>
22
       <toc file="toc/logviewer_toc.xml"/>
22
       <toc file="toc/automatable_services_toc.xml"/>
23
   </extension>
23
       <toc file="toc/url_test_toc.xml"/>
24
24
       <toc file="toc/junit_test_toc.xml"/>
25
   <extension point="org.eclipse.help.toc">
25
       <toc file="toc/test_results_toc.xml"/>
26
       <toc file="toc/testreports_toc.xml"/>
26
       <toc file="toc/test_reports_toc.xml"/>
27
   </extension>
28
29
   <extension point="org.eclipse.help.toc">
30
       <toc file="toc/junit_toc.xml"/>
31
   </extension>
32
33
   <extension point="org.eclipse.help.toc">
34
       <toc file="toc/url_toc.xml"/>
35
   </extension>
36
37
   <extension point="org.eclipse.help.toc">
38
       <toc file="toc/common_toc.xml"/>
39
   </extension>
40
41
   <extension point="org.eclipse.help.toc">
42
       <toc file="toc/deploy_toc.xml"/>
43
   </extension>
27
   </extension>
44
</plugin>
28
</plugin>
(-)toc/logviewer_toc.xml (-27 lines)
Removed Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2007, 2008 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id: logviewer_toc.xml,v 1.2 2008/05/30 18:24:28 paules Exp $
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS  TYPE="org.eclipse.help.toc"?>
16
<toc label="Analyzing test results">
17
   <topic label="Analyzing test results" href="concepts/c_viewingtestresults.html">
18
      <topic label="Opening a test log" href="tasks/t_openinglogs.html"/>
19
      <topic label="Viewing events" href="tasks/t_viewingevents.html">	      
20
	      <topic label="Test Log viewer Overview page" href="ref/r_testlog_overview.html"/>
21
		  <topic label="Test Log viewer Events page" href="ref/r_testlog_events.html"/>
22
		  <topic label="Test Log viewer Events toolbar" href="ref/r_testlog_toolbar.html"/>
23
	   	  <topic label="Searching a test log" href="tasks/t_searching_testlogs.html"/>
24
	      <topic label="Associating defects with a test log" href="tasks/t_associating_defects.html"/>
25
	  </topic>
26
   </topic>
27
</toc>
(-)toc/junit_toc.xml (-40 lines)
Removed Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2007, 2008 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id: junit_toc.xml,v 1.5 2008/05/30 18:25:57 paules Exp $
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS TYPE="org.eclipse.help.toc"?>
16
<toc label="Testing with JUnit">
17
   <topic label="Testing with JUnit" href="concepts/cjunitintro.htm">
18
      <topic label="Creating a Java project" href="tasks/tcreateJavaProject.htm"/>
19
      <topic label="Creating JUnit tests" href="tasks/tcreatejunit.htm">
20
	      <topic label="Creating a JUnit test manually" href="tasks/tptpJUnitTest_creatingManually.htm"/>
21
	      <topic label="Importing an existing JUnit test" href="tasks/tptpJUnitTest_importing.htm"/>
22
      </topic>
23
      <topic label="Editing JUnit tests" href="concepts/cEditingJUnitTests.htm">
24
          <topic label="JUnit Test Suite Editor" href="concepts/cJUnitTestEditor.htm">
25
	        <topic label="Adding test methods" href="tasks/tptpJUnitTest_addingTestMethods.htm"/>
26
  	        <topic label="Mapping test methods to a TPTP JUnit test" href="tasks/tptpJUnitTest_testMethods.htm"/>
27
	      </topic>
28
		  <topic label="Tutorial: Accessing a datapool from a JUnit test" href="samples/saccessdp.htm"/>
29
      </topic>          
30
      
31
      <topic label="Running a test" href="tasks/trun.htm"/>
32
      <topic href="tasks/trunningjunittestsuite.htm" label="Running a JUnit test remotely">
33
      </topic>
34
      
35
      <link toc="toc/logviewer_toc.xml"/>
36
      
37
      <link toc="toc/testreports_toc.xml"/>
38
      
39
  </topic>
40
</toc>
(-)toc/comptest_toc.xml (-39 lines)
Removed Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2007, 2008 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id: comptest_toc.xml,v 1.4 2008/03/24 17:03:08 jkubasta Exp $
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS TYPE="org.eclipse.help.toc"?>
16
<toc label="Testing applications" topic="concepts/ccommontestingtasksandconcepts.htm">
17
   
18
    <topic label="Providing tests with variable data" href="tasks/tdatapool.htm">
19
  	    <topic label="Datapool structure" href="concepts/cdatapools.htm"/>
20
    	<topic label="Creating a datapool" href="tasks/tcreatedp.htm"/>
21
    	<topic label="Opening a datapool" href="tasks/topendp.htm"/>
22
        <topic label="Editing a datapool" href="tasks/teditdp.htm"/>
23
	    <topic label="Tutorial: Accessing a datapool from a JUnit test" href="samples/saccessdp.htm"/>
24
	</topic>
25
26
      <link toc="toc/deploy_toc.xml"/>
27
28
      <link toc="toc/common_toc.xml"/>
29
30
   <link toc="toc/url_toc.xml"/>
31
32
   <link toc="toc/junit_toc.xml"/>
33
34
   <anchor id="additional_test_types"/>
35
36
   <topic label="References" href="ref/rreferencesoverview.htm">
37
		<topic label="Generic launch configuration properties" href="ref/rgenericlaunchconfigprops.htm"/>
38
   </topic>
39
</toc>
(-)toc/testreports_toc.xml (-20 lines)
Removed Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2007 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id: testreports_toc.xml,v 1.1 2007/12/05 20:04:00 paules Exp $
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS  TYPE="org.eclipse.help.toc"?>
16
<toc label="Generating test reports">
17
   <topic label="Generating test reports" href="tasks/tcreatetestreports.htm"/>
18
   
19
   <anchor id="additional_test_reports"/>
20
</toc>
(-)toc/deploy_toc.xml (-28 lines)
Removed Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2007, 2008 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id: deploy_toc.xml,v 1.2 2008/04/18 16:04:05 paules Exp $
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS  TYPE="org.eclipse.help.toc"?>
16
<toc label="Common test deployment topics">
17
	<topic label="Creating a test deployment" href="tasks/tdeploymentintro.htm">
18
		<topic label="Creating an artifact" href="tasks/tcreateartifact.htm">
19
			<topic label="Editing an artifact" href="concepts/cartifacteditor.htm"/>
20
		</topic>
21
		<topic label="Creating a location" href="tasks/tcreatelocation.htm">
22
			<topic label="Editing a location" href="concepts/clocationeditor.htm"/>
23
		</topic>
24
		<topic label="Creating a deployment" href="tasks/tcreatetestdeployment.htm">
25
			<topic label="Editing a deployment" href="concepts/cdeployeditor.htm"/>
26
		</topic>
27
	</topic>
28
</toc>
(-)toc/common_toc.xml (-23 lines)
Removed Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2007, 2008 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id: common_toc.xml,v 1.2 2008/01/31 18:00:33 paules Exp $
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS  TYPE="org.eclipse.help.toc"?>
16
<toc label="Topics that are common to all of the Test subsections">
17
   <topic label="Launching tests from scripts and applications" href="tasks/tlaunching-tests-from-scripts-and-applications.htm">
18
      <topic label="Overview of the automatable service framework" href="concepts/coverview-of-the-automatable-services-framework.htm"/>
19
      <topic label="Using the TPTP automatable services" href="tasks/texecuting-the-test-execution-service.htm"/>
20
      <topic label="Supported test execution service properties" href="ref/rsupported-test-execution-service-properties.htm"/>
21
      <anchor id="additional_automatable_services"/>
22
   </topic>
23
</toc>
(-)toc/url_toc.xml (-35 lines)
Removed Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2007, 2008 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id: url_toc.xml,v 1.3 2008/04/09 19:58:06 paules Exp $
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS TYPE="org.eclipse.help.toc"?>
16
<toc label="Testing performance"> 
17
	<topic label="Testing performance" href="concepts/ctestwithhyades.htm">
18
           
19
      <topic label="Creating a Java project" href="tasks/tcreateJavaProject.htm"/>
20
      
21
      <topic label="Creating a test" href="tasks/tcreatingaperformancetest.htm">
22
            <anchor id="test_suite_generators"/>
23
      </topic>
24
      
25
      <topic label="Editing a test" href="concepts/cedittest.htm"/>
26
      <topic label="Generating an executable test" href="tasks/tgenerateexecutabletest.htm"/>
27
      <topic label="Running a test" href="tasks/trun.htm"/>
28
29
      <link toc="toc/logviewer_toc.xml"/>
30
31
      <topic href="tasks/tcreateperformancetestreports.htm" label="Generating performance test reports"/>
32
      
33
      <link toc="toc/testreports_toc.xml"/>      
34
   </topic>
35
</toc>
(-)concepts/cartifacteditor.htm (-3 / +3 lines)
Lines 2-8 Link Here
2
<html lang="en-us" xml:lang="en-us">
2
<html lang="en-us" xml:lang="en-us">
3
<!-- 
3
<!-- 
4
/**********************************************************************
4
/**********************************************************************
5
 * Copyright (c) 2006, 2008 Scapa Technologies and others.
5
 * Copyright (c) 2006, 2009 Scapa Technologies and others.
6
 * All rights reserved. This content is made available under 
6
 * All rights reserved. This content is made available under 
7
 * the terms of the Eclipse Public License v1.0
7
 * the terms of the Eclipse Public License v1.0
8
 * which accompanies this distribution, and is available at
8
 * which accompanies this distribution, and is available at
Lines 19-30 Link Here
19
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
19
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
20
<link rel="StyleSheet" href="../css/book.css" type="text/css" />
20
<link rel="StyleSheet" href="../css/book.css" type="text/css" />
21
21
22
<title>Editing an artifact</title>
22
<title>Artifact Editor</title>
23
</head>
23
</head>
24
24
25
<body>
25
<body>
26
26
27
<h1>Editing an artifact</h1>
27
<h1>Artifact Editor</h1>
28
28
29
<p>Test artifacts are edited using the Artifact editor.  The editor contains three tabs:</p> 
29
<p>Test artifacts are edited using the Artifact editor.  The editor contains three tabs:</p> 
30
30
(-)concepts/clocationeditor.htm (-3 / +3 lines)
Lines 2-8 Link Here
2
<html lang="en-us" xml:lang="en-us">
2
<html lang="en-us" xml:lang="en-us">
3
<!-- 
3
<!-- 
4
/**********************************************************************
4
/**********************************************************************
5
 * Copyright (c) 2006, 2008 Scapa Technologies and others.
5
 * Copyright (c) 2006, 2009 Scapa Technologies and others.
6
 * All rights reserved. This content is made available under 
6
 * All rights reserved. This content is made available under 
7
 * the terms of the Eclipse Public License v1.0
7
 * the terms of the Eclipse Public License v1.0
8
 * which accompanies this distribution, and is available at
8
 * which accompanies this distribution, and is available at
Lines 19-30 Link Here
19
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
19
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
20
<link rel="StyleSheet" href="../css/book.css" type="text/css" />
20
<link rel="StyleSheet" href="../css/book.css" type="text/css" />
21
21
22
<title>Editing a location</title>
22
<title>Location Editor</title>
23
</head>
23
</head>
24
24
25
<body>
25
<body>
26
26
27
<h1>Editing a location</h1>
27
<h1>Location Editor</h1>
28
28
29
<p>Test locations are edited using the Location editor.  The editor contains three tabs:</p> 
29
<p>Test locations are edited using the Location editor.  The editor contains three tabs:</p> 
30
30
(-)concepts/cdeployeditor.htm (-3 / +3 lines)
Lines 2-8 Link Here
2
<html lang="en-us" xml:lang="en-us">
2
<html lang="en-us" xml:lang="en-us">
3
<!-- 
3
<!-- 
4
/**********************************************************************
4
/**********************************************************************
5
 * Copyright (c) 2006, 2008 Scapa Technologies and others.
5
 * Copyright (c) 2006, 2009 Scapa Technologies and others.
6
 * All rights reserved. This content is made available under 
6
 * All rights reserved. This content is made available under 
7
 * the terms of the Eclipse Public License v1.0
7
 * the terms of the Eclipse Public License v1.0
8
 * which accompanies this distribution, and is available at
8
 * which accompanies this distribution, and is available at
Lines 19-30 Link Here
19
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
19
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
20
<link rel="StyleSheet" href="../css/book.css" type="text/css" />
20
<link rel="StyleSheet" href="../css/book.css" type="text/css" />
21
21
22
<title>Editing a deployment</title>
22
<title>Deployment Editor</title>
23
</head>
23
</head>
24
24
25
<body>
25
<body>
26
26
27
<h1>Editing a deployment</h1>
27
<h1>Deployment Editor</h1>
28
28
29
<p>Test deployments are edited using the Deployment editor.  The editor contains three tabs:</p> 
29
<p>Test deployments are edited using the Deployment editor.  The editor contains three tabs:</p> 
30
30
(-)toc/test_recorders_toc.xml (+24 lines)
Added Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2009 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id$
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS  TYPE="org.eclipse.help.toc"?>
16
<toc label="Creating tests from recordings">
17
	
18
	<topic label="Creating tests from recordings" href="tasks/trecordersintro.htm">
19
20
		<topic label="Creating a test from a recording" href="tasks/tcreatetestfromrecording.htm">
21
			<topic label="Recorder Control View" href="concepts/crecordercontrolview.htm"/>
22
		</topic>				
23
	</topic>
24
</toc>
(-)tasks/trecordersintro.htm (+44 lines)
Added Link Here
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
2
<html lang="en-us" xml:lang="en-us">
3
<!-- 
4
/**********************************************************************
5
 * Copyright (c) 2009 IBM Corporation.
6
 * All rights reserved.   This content
7
 * is made available under the terms of the Eclipse Public License v1.0
8
 * which accompanies this distribution, and is available at
9
 * http://www.eclipse.org/legal/epl-v10.html        
10
 * $Id$
11
 *
12
 * Contributors:
13
 * IBM - Initial contribution
14
 **********************************************************************/  
15
 -->
16
<head>
17
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
18
<link rel="StyleSheet" href="../css/book.css" type="text/css" />
19
20
<title>Creating tests from recordings</title>
21
</head>
22
23
<body>
24
25
<h1>Creating tests from recordings</h1>
26
27
<p>This section describes creating tests from recordings.</p>
28
29
<ul>
30
	<li>
31
		<a href="tcreatetestfromrecording.htm">Creating a test from a recording</a>
32
		<p>Recordings capture user interactions with an application used to generate tests.</p>
33
		<br/>
34
	</li>
35
</ul>
36
37
<p>
38
<b>Related concepts</b><br/>
39
<a href="../concepts/crecordercontrolview.htm">Recorder Control View</a><br/>
40
</p>
41
42
</body>
43
44
</html>
(-)toc/testing_toc.xml (+35 lines)
Added Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2009 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id$
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS TYPE="org.eclipse.help.toc"?>
16
<toc label="Testing applications" topic="concepts/ccommontestingtasksandconcepts.htm">
17
18
    <link toc="toc/test_recorders_toc.xml"/>
19
   
20
    <link toc="toc/test_datapools_toc.xml"/>
21
22
    <link toc="toc/test_deployments_toc.xml"/>
23
24
    <link toc="toc/automatable_services_toc.xml"/>
25
26
    <link toc="toc/url_test_toc.xml"/>
27
28
    <link toc="toc/junit_test_toc.xml"/>
29
30
    <anchor id="additional_testing"/>
31
32
    <topic label="References" href="ref/rreferencesoverview.htm">
33
		<topic label="Generic launch configuration properties" href="ref/rgenericlaunchconfigprops.htm"/>
34
   	</topic>
35
</toc>
(-)concepts/crecordercontrolview.htm (+76 lines)
Added Link Here
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
2
<html lang="en-us" xml:lang="en-us">
3
<!-- 
4
/**********************************************************************
5
 * Copyright (c) 2009 IBM Corporation.
6
 * All rights reserved.   This content
7
 * is made available under the terms of the Eclipse Public License v1.0
8
 * which accompanies this distribution, and is available at
9
 * http://www.eclipse.org/legal/epl-v10.html        
10
 * $Id$
11
 *
12
 * Contributors:
13
 * IBM - Initial contribution
14
 **********************************************************************/  
15
 -->
16
<head>
17
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
18
<link rel="StyleSheet" href="../css/book.css" type="text/css" />
19
20
<title>Recorder Control View</title>
21
</head>
22
23
<body>
24
25
<h1>Recorder Control View</h1>
26
27
<p>Recorders are controlled and monitored in the Recorder Control view.<p>
28
29
<p>Open the Recorder Control view:</p>
30
31
<ol>
32
 	<li>Select <b>Window</b> &gt; <b>Show View</b> &gt; <b>Other...</b> from the file menu.</li>
33
	<li>Select <b>Test</b> &gt; <b>Recorder Control</b>.
34
	<li>Click <b>OK</b> to open the Recorder Control view.</li>
35
</ol>
36
37
<p>The view contains a toolbar and status pane:</p> 
38
39
<h2>Toolbar</h2>
40
41
<p>The toolbar contains the following buttons to control recorders:</p>
42
43
<ul>
44
	<li>
45
		<p><b>New Test From Recording</b></p>
46
		<p>Launches the <a href="../tasks/tcreatetestfromrecording.htm">New Test From Recording</a> wizard to launch a recorder to create the new recording and create a new test from the new recording.  In addition, a test can be created from an existing recording with the wizard.</p>
47
		<br/>
48
	</li>
49
	<li>
50
		<p><b>Stop Recording</b></p>
51
		<p>Stops the launched recorder.</p>
52
		<br/>
53
	</li>
54
</ul>
55
56
<h2>Status Pane</h2>
57
58
<p>The status pane contains the following information to monitor the launched recorder:</p>
59
60
<ul>
61
	<li>Kilobytes of data recorded by the recorder.</li>
62
	<li>Status of the recorder.  For example, <b>Initializing...</b>, <b>Recording</b>, or <b>Stopped</b>.</li>
63
	<li>Status messages emitted by the recorder.  For example, <b>Recording started</b>, <b>Recording completed</b>, and <b>Test generation completed</b>.</li>
64
</ul>
65
66
<p>Individual status messages can be selected and copied (right-click the selected status message and select <b>Copy</b>).  In addition, all of the status messages
67
can be selected (right-click a status message and select <b>Select All</b>) and copied (right-click a status message and select <b>Copy</b>).</p>
68
69
<p>
70
<b>Related tasks</b><br/>
71
<a href="../tasks/tcreatetestfromrecording.htm">Creating a test from a recording</a><br/>
72
</p>
73
74
</body>
75
76
</html>
(-)toc/junit_test_toc.xml (+44 lines)
Added Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2009 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id$
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS TYPE="org.eclipse.help.toc"?>
16
<toc label="Testing with JUnit">
17
   
18
   <topic label="Testing with JUnit" href="concepts/cjunitintro.htm">
19
      
20
      <topic label="Creating a Java project" href="tasks/tcreateJavaProject.htm"/>
21
      
22
      <topic label="Creating JUnit tests" href="tasks/tcreatejunit.htm">
23
	      <topic label="Creating a JUnit test manually" href="tasks/tptpJUnitTest_creatingManually.htm"/>
24
	      <topic label="Importing an existing JUnit test" href="tasks/tptpJUnitTest_importing.htm"/>
25
      </topic>
26
      
27
      <topic label="Editing JUnit tests" href="concepts/cEditingJUnitTests.htm">
28
          
29
          <topic label="JUnit Test Suite Editor" href="concepts/cJUnitTestEditor.htm">
30
	        <topic label="Adding test methods" href="tasks/tptpJUnitTest_addingTestMethods.htm"/>
31
  	        <topic label="Mapping test methods to a TPTP JUnit test" href="tasks/tptpJUnitTest_testMethods.htm"/>
32
	      </topic>
33
		  
34
		  <topic label="Tutorial: Accessing a datapool from a JUnit test" href="samples/saccessdp.htm"/>
35
      </topic>          
36
      
37
      <topic label="Running a test" href="tasks/trun.htm"/>
38
      <topic label="Running a JUnit test remotely" href="tasks/trunningjunittestsuite.htm"/>
39
      
40
      <link toc="toc/test_results_toc.xml"/>
41
      
42
      <link toc="toc/test_reports_toc.xml"/>      
43
  </topic>
44
</toc>
(-)toc/test_reports_toc.xml (+21 lines)
Added Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2009 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id$
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS  TYPE="org.eclipse.help.toc"?>
16
<toc label="Generating test reports">
17
  
18
   <topic label="Generating test reports" href="tasks/tcreatetestreports.htm"/>
19
  
20
   <anchor id="additional_test_reports"/>
21
</toc>
(-)toc/url_test_toc.xml (+36 lines)
Added Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2009 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id$
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS TYPE="org.eclipse.help.toc"?>
16
<toc label="Testing performance"> 
17
	
18
	<topic label="Testing performance" href="concepts/ctestwithhyades.htm">
19
           
20
      <topic label="Creating a Java project" href="tasks/tcreateJavaProject.htm"/>
21
      
22
      <topic label="Creating a test" href="tasks/tcreatingaperformancetest.htm">
23
	  	<anchor id="additional_url_test_generators"/>
24
      </topic>
25
      
26
      <topic label="Editing a test" href="concepts/cedittest.htm"/>
27
      <topic label="Generating an executable test" href="tasks/tgenerateexecutabletest.htm"/>
28
      <topic label="Running a test" href="tasks/trun.htm"/>
29
30
      <link toc="toc/test_results_toc.xml"/>
31
32
      <topic href="tasks/tcreateperformancetestreports.htm" label="Generating performance test reports"/>
33
      
34
      <link toc="toc/report_toc.xml"/>      
35
   </topic>
36
</toc>
(-)toc/automatable_services_toc.xml (+26 lines)
Added Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2009 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id$
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS  TYPE="org.eclipse.help.toc"?>
16
<toc label="Launching tests from scripts and applications">
17
   
18
   <topic label="Launching tests from scripts and applications" href="tasks/tlaunching-tests-from-scripts-and-applications.htm">
19
      
20
      <topic label="Overview of the automatable service framework" href="concepts/coverview-of-the-automatable-services-framework.htm"/>
21
      <topic label="Using the TPTP automatable services" href="tasks/texecuting-the-test-execution-service.htm"/>
22
      <topic label="Supported test execution service properties" href="ref/rsupported-test-execution-service-properties.htm"/>
23
   
24
      <anchor id="additional_automatable_services"/>
25
   </topic>
26
</toc>
(-)toc/test_deployments_toc.xml (+32 lines)
Added Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2009 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id$
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS  TYPE="org.eclipse.help.toc"?>
16
<toc label="Creating a test deployment">
17
	
18
	<topic label="Creating a test deployment" href="tasks/tdeploymentintro.htm">
19
		
20
		<topic label="Creating an artifact" href="tasks/tcreateartifact.htm">
21
			<topic label="Artifact Editor" href="concepts/cartifacteditor.htm"/>
22
		</topic>
23
		
24
		<topic label="Creating a location" href="tasks/tcreatelocation.htm">
25
			<topic label="Location Editor" href="concepts/clocationeditor.htm"/>
26
		</topic>
27
		
28
		<topic label="Creating a deployment" href="tasks/tcreatetestdeployment.htm">
29
			<topic label="Deployment Editor" href="concepts/cdeployeditor.htm"/>
30
		</topic>
31
	</topic>
32
</toc>
(-)toc/test_datapools_toc.xml (+26 lines)
Added Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2009 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id$
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS  TYPE="org.eclipse.help.toc"?>
16
<toc label="Providing tests with variable data">
17
	
18
	<topic label="Providing tests with variable data" href="tasks/tdatapool.htm">
19
  	    
20
  	    <topic label="Datapool structure" href="concepts/cdatapools.htm"/>
21
    	<topic label="Creating a datapool" href="tasks/tcreatedp.htm"/>
22
    	<topic label="Opening a datapool" href="tasks/topendp.htm"/>
23
        <topic label="Editing a datapool" href="tasks/teditdp.htm"/>
24
	    <topic label="Tutorial: Accessing a datapool from a JUnit test" href="samples/saccessdp.htm"/>
25
	</topic>
26
</toc>
(-)tasks/tcreatetestfromrecording.htm (+74 lines)
Added Link Here
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
2
<html lang="en-us" xml:lang="en-us">
3
<!-- 
4
/**********************************************************************
5
 * Copyright (c) 2009 IBM Corporation.
6
 * All rights reserved.   This content
7
 * is made available under the terms of the Eclipse Public License v1.0
8
 * which accompanies this distribution, and is available at
9
 * http://www.eclipse.org/legal/epl-v10.html        
10
 * $Id$
11
 *
12
 * Contributors:
13
 * IBM - Initial contribution
14
 **********************************************************************/  
15
 -->
16
<head>
17
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
18
<link rel="StyleSheet" href="../css/book.css" type="text/css" />
19
20
<title>Creating a test from a recording</title>
21
</head>
22
23
<body>
24
25
<h1>Creating a test from a recording</h1>
26
27
<p>Recordings capture user interactions with an application used to generate tests.</p>
28
29
<p>Tests are created from new recordings with the <b>New Test From Recording</b> wizard:</p>
30
31
<ol>
32
	<li>Right-click in the Test Navigator, select <b>New</b> &gt; <b>Test Element...</b> &gt; <b>Test From Recording</b>, and click <b>Next</b>.  Alternatively, click the <b>New Test From Recording</b> button in the toolbar of the <a href="../concepts/crecordercontrolview.htm">Recorder Control View</a>.</li>
33
    <li>Select <b>Create the test from a new recording</b>.</li>
34
    <li>Select the recorder to record the new recording.  A description of the selected recorder is displayed below the list of recorders.</li>
35
    <li>Optionally, click <b>Advanced &gt;&gt;</b> and select a different test generator to create the new test from the new recording.</li> 
36
    <li>Click <b>Next</b>.</li>
37
    <li>If there are no projects in the workspace, define the project name, project location, and name of the new test.  Otherwise, select the parent folder and define the name of the new test.</li>
38
    <li>Click <b>Finish</b> to open the <a href="../concepts/crecordercontrolview.htm">Recorder Control View</a> to control and monitor the recorder, launch the recorder to create the new recording, and create the new test from the new recording.</li>
39
    <li>The <b>Confirm Open Editor</b> dialog may appear (see the <b>Window</b> &gt; <b>Preferences...</b> &gt; <b>Test</b> &gt; <b>Open Editor</b> preference), confirming if the new test is to be opened in the test editor.</li>
40
</ol>
41
42
<p>In addition, tests can be created from existing recordings with the <b>New Test From Recording</b> wizard:</p>
43
44
<ol>
45
	<li>Right-click in the Test Navigator, select <b>New</b> &gt; <b>Test Element...</b> &gt; <b>Test From Recording</b>, and click <b>Next</b>.  Alternatively, click the <b>New Test From Recording</b> button in the toolbar of the <a href="../concepts/crecordercontrolview.htm">Recorder Control View</a>.</li>
46
    <li>Select <b>Test From Recording</b> and click <b>Next</b>.</li>
47
    <li>Select <b>Create the test from an existing recording</b>.</li>
48
    <li>Select the recorder that was used to record the existing recording.  A description of the selected recorder is displayed below the list of recorders.</li>
49
    <li>Optionally, click <b>Advanced &gt;&gt;</b> and select a different test generator to create the new test from the existing recording.</li> 
50
    <li>Click <b>Next</b>.</li>
51
	<li>Select the existing recording and click <b>Next</b>.</li>
52
    <li>Select the parent folder and define the name of the new test.</li>
53
    <li>Click <b>Finish</b> to create the new test from the existing recording.</li>
54
    <li>The <b>Confirm Open Editor</b> dialog may appear (see the <b>Window</b> &gt; <b>Preferences...</b> &gt; <b>Test</b> &gt; <b>Open Editor</b> preference), confirming if the new test is to be opened in the test editor.</li>
55
</ol>
56
57
<p>Alternatively, tests can be created from existing recording files with the <b>New Test From Recording</b> wizard:</p>
58
59
<ol>
60
	<li>Right-click the existing recording file (<i>*.recmodel</i>) in the Project Explorer and select <b>Generate Test</b>.</li>
61
    <li>Select a test generator to create the new test from the existing recording file and click <b>Next</b>.</li>
62
    <li>Select the parent folder and define the name of the new test.</li>
63
    <li>Click <b>Finish</b> to create the new test from the existing recording file.</li>
64
    <li>The <b>Confirm Open Editor</b> dialog may appear (see the <b>Window</b> &gt; <b>Preferences...</b> &gt; <b>Test</b> &gt; <b>Open Editor</b> preference), confirming if the new test is to be opened in the test editor.</li>
65
</ol>
66
67
<p>
68
<b>Related concepts</b><br/>
69
<a href="../concepts/crecordercontrolview.htm">Recorder Control View</a><br/>
70
</p>
71
72
</body>
73
74
</html>
(-)toc/test_results_toc.xml (+31 lines)
Added Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2009 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id$
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS  TYPE="org.eclipse.help.toc"?>
16
<toc label="Analyzing test results">
17
   
18
   <topic label="Analyzing test results" href="concepts/c_viewingtestresults.html">
19
   
20
      <topic label="Opening a test log" href="tasks/t_openinglogs.html"/>
21
   
22
      <topic label="Viewing events" href="tasks/t_viewingevents.html">	      
23
	
24
	      <topic label="Test Log viewer Overview page" href="ref/r_testlog_overview.html"/>
25
		  <topic label="Test Log viewer Events page" href="ref/r_testlog_events.html"/>
26
		  <topic label="Test Log viewer Events toolbar" href="ref/r_testlog_toolbar.html"/>
27
	   	  <topic label="Searching a test log" href="tasks/t_searching_testlogs.html"/>
28
	      <topic label="Associating defects with a test log" href="tasks/t_associating_defects.html"/>
29
	  </topic>
30
   </topic>
31
</toc>
(-)plugin.xml (-2 / +2 lines)
Lines 1-7 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!-- 
2
<!-- 
3
/**********************************************************************
3
/**********************************************************************
4
 * Copyright (c) 2008 IBM Corporation.
4
 * Copyright (c) 2008, 2009 IBM Corporation.
5
 * All rights reserved.   This content
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
7
 * which accompanies this distribution, and is available at
Lines 15-20 Link Here
15
<?eclipse version="3.0"?>
15
<?eclipse version="3.0"?>
16
<plugin>
16
<plugin>
17
   <extension point="org.eclipse.help.toc">
17
   <extension point="org.eclipse.help.toc">
18
       <toc file="toc/junitplugin_toc.xml" primary="true" />
18
       <toc file="toc/junit_plugin_test_toc.xml" primary="true"/>
19
   </extension>
19
   </extension>
20
</plugin>
20
</plugin>
(-)toc/junitplugin_toc.xml (-36 lines)
Removed Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2008 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id: junitplugin_toc.xml,v 1.6 2008/07/17 19:07:16 paules Exp $
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS TYPE="org.eclipse.help.toc"?>
16
<toc label="Testing plug-ins with JUnit" link_to="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/toc/comptest_toc.xml#additional_test_types">
17
  <topic label="Testing plug-ins with JUnit" href="concepts/cintro.htm">
18
      <topic label="Creating and configuring a plug-in project" href="tasks/tcreatePluginProject.htm"/>
19
      <topic label="Creating JUnit Plug-in tests" href="tasks/tcreatePluginTest.htm">
20
      	<topic label="Creating a JUnit Plug-in test manually" href="tasks/tptpJUnitPluginTest_creatingManually.htm"/>
21
	    <topic label="Importing an existing JUnit Plug-in test" href="tasks/tptpJUnitPluginTest_importing.htm"/>
22
      </topic>      
23
      <topic label="Editing JUnit Plug-in tests" href="concepts/cEditingJUnitPluginTests.htm">
24
	      <topic label="JUnit Plug-in Test Suite Editor" href="concepts/cpluginTestEditor.htm"/>
25
		  <topic label="Tutorial: Accessing a datapool from a JUnit test" href="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/samples/saccessdp.htm"/>
26
      </topic>          
27
	  <topic label="Creating a workbench location" href="tasks/tcreateWorkbenchLocation.htm">
28
	    <topic label="Editing a workbench location" href="concepts/cworkbenchLocationEditor.htm"/>
29
	  </topic>
30
      <topic label="Running a test" href="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/tasks/trun.htm"/>
31
32
	  <link toc="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/toc/logviewer_toc.xml"/>
33
	
34
	  <link toc="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/toc/testreports_toc.xml"/>
35
  </topic>
36
</toc>
(-)tasks/tcreateWorkbenchLocation.htm (-2 / +2 lines)
Lines 2-8 Link Here
2
<html lang="en-us" xml:lang="en-us">
2
<html lang="en-us" xml:lang="en-us">
3
<!-- 
3
<!-- 
4
/**********************************************************************
4
/**********************************************************************
5
 * Copyright (c) 2006, 2008 Scapa Technologies and others.
5
 * Copyright (c) 2006, 2009 Scapa Technologies and others.
6
 * All rights reserved. This content is made available under 
6
 * All rights reserved. This content is made available under 
7
 * the terms of the Eclipse Public License v1.0
7
 * the terms of the Eclipse Public License v1.0
8
 * which accompanies this distribution, and is available at
8
 * which accompanies this distribution, and is available at
Lines 32-38 Link Here
32
<ol>
32
<ol>
33
	<li>Right-click in the Test Navigator and select <b>New</b> &gt; <b>Test Element...</b>.</li>
33
	<li>Right-click in the Test Navigator and select <b>New</b> &gt; <b>Test Element...</b>.</li>
34
	<li>Select <b>Test Assets</b> &gt; <b>Workbench Location</b> and click <b>Next</b>.</li>
34
	<li>Select <b>Test Assets</b> &gt; <b>Workbench Location</b> and click <b>Next</b>.</li>
35
    <li>Provide the parent folder and the name for the test workbench location and click <b>Next</b>.</li>
35
    <li>Select the parent folder and define the name of the test workbench location and click <b>Next</b>.</li>
36
    <li>Optionally, provide a description for the test workbench location and click <b>Next</b>.</li>
36
    <li>Optionally, provide a description for the test workbench location and click <b>Next</b>.</li>
37
    <li>Select the target workbench as either the local workbench, as defined in the <a href="PLUGINS_ROOT/org.eclipse.pde.doc.user/guide/tools/preference_pages/target_platform.htm">Target Platform</a>, 
37
    <li>Select the target workbench as either the local workbench, as defined in the <a href="PLUGINS_ROOT/org.eclipse.pde.doc.user/guide/tools/preference_pages/target_platform.htm">Target Platform</a>, 
38
    or another workbench.  If another workbench is selected, enter the host name or IP address of the target host, Eclipse location (<i>&lt;Eclipse installation directory absolute path&gt;/eclipse</i>), 
38
    or another workbench.  If another workbench is selected, enter the host name or IP address of the target host, Eclipse location (<i>&lt;Eclipse installation directory absolute path&gt;/eclipse</i>), 
(-)toc/junit_plugin_test_toc.xml (+36 lines)
Added Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2008, 2009 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id: junitplugin_toc.xml,v 1.6 2008/07/17 19:07:16 paules Exp $
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS TYPE="org.eclipse.help.toc"?>
16
<toc label="Testing plug-ins with JUnit" link_to="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/toc/testing_toc.xml#additional_testing">
17
  <topic label="Testing plug-ins with JUnit" href="concepts/cintro.htm">
18
      <topic label="Creating and configuring a plug-in project" href="tasks/tcreatePluginProject.htm"/>
19
      <topic label="Creating JUnit Plug-in tests" href="tasks/tcreatePluginTest.htm">
20
      	<topic label="Creating a JUnit Plug-in test manually" href="tasks/tptpJUnitPluginTest_creatingManually.htm"/>
21
	    <topic label="Importing an existing JUnit Plug-in test" href="tasks/tptpJUnitPluginTest_importing.htm"/>
22
      </topic>      
23
      <topic label="Editing JUnit Plug-in tests" href="concepts/cEditingJUnitPluginTests.htm">
24
	      <topic label="JUnit Plug-in Test Suite Editor" href="concepts/cpluginTestEditor.htm"/>
25
		  <topic label="Tutorial: Accessing a datapool from a JUnit test" href="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/samples/saccessdp.htm"/>
26
      </topic>          
27
	  <topic label="Creating a workbench location" href="tasks/tcreateWorkbenchLocation.htm">
28
	    <topic label="Editing a workbench location" href="concepts/cworkbenchLocationEditor.htm"/>
29
	  </topic>
30
      <topic label="Running a test" href="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/tasks/trun.htm"/>
31
32
	  <link toc="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/toc/test_results_toc.xml"/>
33
	
34
	  <link toc="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/toc/test_reports_toc.xml"/>
35
  </topic>
36
</toc>
(-)toc/manual_toc.xml (-4 / +4 lines)
Lines 1-7 Link Here
1
<?xml version="1.0" encoding="utf-8"?>
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
2
<!-- 
3
/**********************************************************************
3
/**********************************************************************
4
 * Copyright (c) 2007, 2008 IBM Corporation.
4
 * Copyright (c) 2007, 2009 IBM Corporation.
5
 * All rights reserved.   This content
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
7
 * which accompanies this distribution, and is available at
Lines 13-19 Link Here
13
 **********************************************************************/  
13
 **********************************************************************/  
14
 -->
14
 -->
15
<?NLS TYPE="org.eclipse.help.toc"?>
15
<?NLS TYPE="org.eclipse.help.toc"?>
16
<toc label="Testing manually" link_to="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/toc/comptest_toc.xml#additional_test_types">
16
<toc label="Testing manually" link_to="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/toc/testing_toc.xml#additional_testing">
17
	<topic label="Testing manually" href="concepts/cmanualtestoverview.htm">
17
	<topic label="Testing manually" href="concepts/cmanualtestoverview.htm">
18
        <topic label="Creating a general project" href="tasks/tcreateGeneralProject.htm"/>
18
        <topic label="Creating a general project" href="tasks/tcreateGeneralProject.htm"/>
19
		<topic label="Creating a manual test" href="tasks/tcreatingamanualtest.htm"/>
19
		<topic label="Creating a manual test" href="tasks/tcreatingamanualtest.htm"/>
Lines 24-31 Link Here
24
		    <topic label="Running the test launch configuration" href="tasks/trunmanualtest.htm"/>
24
		    <topic label="Running the test launch configuration" href="tasks/trunmanualtest.htm"/>
25
	    </topic>
25
	    </topic>
26
	
26
	
27
	    <link toc="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/toc/logviewer_toc.xml"/>
27
	    <link toc="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/toc/test_results_toc.xml"/>
28
	
28
	
29
	    <link toc="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/toc/testreports_toc.xml"/>
29
	    <link toc="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/toc/test_reports_toc.xml"/>
30
	</topic>
30
	</topic>
31
</toc>
31
</toc>
(-)tasks/trecordtest.html (-121 lines)
Removed Link Here
1
<!DOCTYPE html
2
  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
<html lang="en-us" xml:lang="en-us">
4
<!-- 
5
/**********************************************************************
6
 * Copyright (c) 2008 IBM Corporation.
7
 * All rights reserved.   This content
8
 * is made available under the terms of the Eclipse Public License v1.0
9
 * which accompanies this distribution, and is available at
10
 * http://www.eclipse.org/legal/epl-v10.html        
11
 * $Id: trecordtest.html,v 1.6 2008/07/17 19:07:28 paules Exp $
12
 *
13
 * Contributors:
14
 * IBM - Initial contribution
15
 **********************************************************************/  
16
 -->
17
<head>
18
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
19
<meta name="security" content="public" />
20
<meta name="Robots" content="index,follow" />
21
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
22
<meta name="DC.Type" content="task" />
23
<meta name="DC.Title" content="Recording a test" />
24
<meta name="abstract" content="The test creation wizard starts when you record a test. This wizard combines these actions: recording a session with a Web application, generating a test from the recording, and opening the test in the test editor. You can record a test from Internet Explorer (the default on Windows) or from another browser." />
25
<meta name="description" content="The test creation wizard starts when you record a test. This wizard combines these actions: recording a session with a Web application, generating a test from the recording, and opening the test in the test editor. You can record a test from Internet Explorer (the default on Windows) or from another browser." />
26
<meta name="DC.Format" content="XHTML" />
27
<meta name="DC.Identifier" content="recordingatest" />
28
<meta name="DC.Language" content="en-us" />
29
<link rel="stylesheet" type="text/css" href="../css/ibmdita.css" />
30
<link rel="stylesheet" type="text/css" href="../css/book.css" />
31
<title>Recording a test</title>
32
</head>
33
<body><a name="recordingatest"><!-- --></a>
34
<h1 class="topictitle1">Recording a test</h1>
35
<div><p>The test creation wizard starts when you record a test. This wizard
36
combines these actions: recording a session with a Web application, generating
37
a test from the recording, and opening the test in the test editor. You can
38
record a test from Internet Explorer (the default on Windows) or from another
39
browser.</p>
40
<div class="p">Optionally launch the <a href="PLUGINS_ROOT/org.eclipse.tptp.platform.agentcontroller.doc.user/concepts/ac/c_ac_ovr.html">Agent Controller</a> on the local host or default to the <a href="PLUGINS_ROOT/org.eclipse.tptp.platform.agentcontroller.doc.user/concepts/ac/ciacintro.html">Integrated Agent Controller</a>
41
<p>If you will record with Internet Explorer, you do not need
42
to set your browser preferences. However, this procedure assumes that the
43
defaults are set, so you might want to click <span class="menucascade"><span class="uicontrol">Window</span> &gt; <span class="uicontrol">Preferences</span></span>, expand Test, select <span class="uicontrol">HTTP
44
Recording</span>, and click <span class="uicontrol">Restore Defaults</span>. </p>
45
<div class="p">If
46
you will record with Mozilla or Firefox, set your browser preferences as follows: <ol><li>Click <span class="menucascade"><span class="uicontrol">Window</span> &gt; <span class="uicontrol">Preferences</span></span>, and expand <span class="uicontrol">Test</span>.</li>
47
<li> Select <span class="uicontrol">URL Recorder</span>, and set <span class="uicontrol">Application
48
to Record</span> to <span class="uicontrol">Mozilla</span> or <span class="uicontrol">Firefox</span>.</li>
49
<li>Enter the path to, or browse to, the browser executable. </li>
50
</ol>
51
 </div>
52
<div class="p">If you will record with another browser:<ol><li>Click <span class="menucascade"><span class="uicontrol">Window</span> &gt; <span class="uicontrol">Preferences</span></span>, and expand <span class="uicontrol">Test</span>.</li>
53
<li> Select <span class="uicontrol">URL Recorder</span>, and set <span class="uicontrol">Application
54
to Record</span> to <span class="uicontrol">None</span>.</li>
55
<li>You will have to manually configure and load your browser; consult the
56
browser's proxy configuration documentation on how to do this.</li>
57
</ol>
58
 </div>
59
</div>
60
<div class="section">To record a test: </div>
61
<ol><li class="stepexpand"><span>Click <span class="menucascade"><span class="uicontrol">File</span> &gt; <span class="uicontrol">New</span> &gt; <span class="uicontrol">Other</span></span>.</span></li>
62
<li class="stepexpand"><span>In the New window, expand <span class="uicontrol">Test</span>, click <span class="uicontrol">Test
63
From Recording</span>, and then click <span class="uicontrol">Next</span>. </span></li>
64
<li class="stepexpand"><span>In the Create New Test from Recording window, select <span class="uicontrol">Create
65
Test from New Recording</span>, and then click <span class="uicontrol">Next</span>. </span></li>
66
<li class="stepexpand"><span> In the list of projects, click the one in which to store this
67
test and related files. The <img src="../images/javaicon.gif" alt="Java icon" /> icon identifies projects that are suitable for containing tests.
68
Tests stored in other projects will not run. </span> <div class="note"><span class="notetitle">Note:</span> If you have
69
not yet created a project, the <span class="uicontrol">Project Name</span> field displays
70
a default name of <tt class="sysout">testproj</tt>, which you can change.</div>
71
</li>
72
<li class="stepexpand"><span>In the <span class="uicontrol">Test file name</span> field, type a
73
name for the test, and click <span class="uicontrol">Finish</span>. The standard Navigator
74
and the Java Package Explorer use this name, with extensions. You will also
75
see this name in the Test Navigator.  A progress window opens while your browser
76
starts. </span></li>
77
<li class="stepexpand"><span>To make sure your recording accurately captures HTTP traffic, clear
78
your browser's cache.</span> <div class="p">To clear the Internet Explorer cache: <ol type="a"><li>Click <span class="menucascade"><span class="uicontrol">Tools</span> &gt; <span class="uicontrol">Internet Options</span></span>.</li>
79
<li>In the Internet Options window, in the Temporary Internet files area,
80
click <span class="uicontrol">Delete Files</span>.</li>
81
<li>In the Delete Files window, select <span class="uicontrol">Delete all offline content</span> and
82
click <span class="uicontrol">OK</span>. </li>
83
<li>Click <span class="uicontrol">OK</span> to close the Internet Options window. </li>
84
</ol>
85
</div>
86
<div class="p">To clear the Mozilla cache:<ol type="a"><li>Click <span class="menucascade"><span class="uicontrol">Edit</span> &gt; <span class="uicontrol">Preferences</span></span>.</li>
87
<li>In the Preferences window, expand <span class="uicontrol">Advanced</span> and
88
click <span class="uicontrol">Cache</span>.</li>
89
<li>In the Set Cache Options area, click <span class="uicontrol">Clear Cache</span>.</li>
90
<li>Click <span class="uicontrol">OK</span> to close the Preferences window.</li>
91
</ol>
92
</div>
93
<div class="p">To clear the Firefox cache<ol type="a"><li>Click <span class="menucascade"><span class="uicontrol">Tools</span> &gt; <span class="uicontrol">Options</span> &gt; <span class="uicontrol">Privacy</span> &gt; <span class="uicontrol">Clear Cache</span></span>.</li>
94
<li>Click <span class="uicontrol">OK</span> to close the Options window.</li>
95
</ol>
96
</div>
97
</li>
98
<li class="stepexpand"><span>In the address box for your browser, type the address of the Web-based
99
application to test and activate the link. </span> <div class="note"><span class="notetitle">Note:</span> If you enter
100
the address of a secure Web site (one that starts with <kbd class="userinput">https:</kbd>),
101
your browser might display a security alert. Depending on the security certificate
102
for the site, you might be required to accept a security risk to proceed with
103
the recording.</div>
104
</li>
105
<li class="stepexpand"><span> Perform the user tasks that you want to test. </span></li>
106
<li class="stepexpand"><span>After you finish performing the tasks, stop recording. To stop
107
recording, close your browser or click on the <span class="uicontrol">Stop Recording</span>
108
button on the right side of the Recorder Control
109
view bar. </span> A progress window opens while the test is generated. </li>
110
<li>The <b>Confirm Open Editor</b> dialog may appear (see the <b>Window</b> &gt; <b>Preferences...</b> &gt; <b>Test</b> &gt; <b>Open Editor</b> preference), confirming if the new performance test suite is to be opened in the URL Test editor.</li>	
111
112
</ol>
113
<div class="section">By default, when you have finished recording an interaction with a browser-based application, 
114
the Recorder Control view displays the message <tt class="sysout">Test
115
generation completed</tt> and the URL Recorder automatically starts the URL Test Generator, which produces a test from the recording. 
116
(You can modify this behavior - specify that a different test generator be started, or that none be started - 
117
by editing the URL Recorder preferences.)</div>
118
</div>
119
120
</body>
121
</html>
(-)plugin.xml (-1 / +1 lines)
Lines 15-20 Link Here
15
<?eclipse version="3.0"?>
15
<?eclipse version="3.0"?>
16
<plugin>
16
<plugin>
17
   <extension point="org.eclipse.help.toc">
17
   <extension point="org.eclipse.help.toc">
18
       <toc file="toc/urlRecorder_toc.xml" primary="true" />
18
       <toc file="toc/url_recorder_toc.xml" primary="true"/>
19
   </extension>
19
   </extension>
20
</plugin>
20
</plugin>
(-)toc/urlRecorder_toc.xml (-18 lines)
Removed Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2008 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id: urlRecorder_toc.xml,v 1.2 2008/07/17 19:07:28 paules Exp $
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS TYPE="org.eclipse.help.toc"?>
16
<toc label="Recording a test" link_to="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/toc/url_toc.xml#test_suite_generators">
17
	<topic label="Recording a test" href="tasks/trecordtest.html"/>
18
</toc>
(-)toc/url_recorder_toc.xml (+18 lines)
Added Link Here
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- 
3
/**********************************************************************
4
 * Copyright (c) 2009 IBM Corporation.
5
 * All rights reserved.   This content
6
 * is made available under the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
8
 * http://www.eclipse.org/legal/epl-v10.html        
9
 * $Id$
10
 *
11
 * Contributors:
12
 * IBM - Initial contribution
13
 **********************************************************************/  
14
 -->
15
<?NLS TYPE="org.eclipse.help.toc"?>
16
<toc label="Creating a test from a URL recording" link_to="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/toc/url_test_toc.xml#additional_url_test_generators">
17
	<topic label="Creating a test from a URL recording" href="tasks/tcreatetestfromurlrecording.htm"/>
18
</toc>
(-)tasks/tcreatetestfromurlrecording.htm (+133 lines)
Added Link Here
1
<!DOCTYPE html
2
  PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3
<html lang="en-us" xml:lang="en-us">
4
<!-- 
5
/**********************************************************************
6
 * Copyright (c) 2009 IBM Corporation.
7
 * All rights reserved.   This content
8
 * is made available under the terms of the Eclipse Public License v1.0
9
 * which accompanies this distribution, and is available at
10
 * http://www.eclipse.org/legal/epl-v10.html        
11
 * $Id$
12
 *
13
 * Contributors:
14
 * IBM - Initial contribution
15
 **********************************************************************/  
16
 -->
17
18
<head>
19
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
20
<link rel="StyleSheet" href="../css/book.css" type="text/css" />
21
22
<title>Creating a test from a URL recording</title>
23
</head>
24
25
<body>
26
27
<h1>Creating a test from a URL recording</h1>
28
29
<p>The URL Recorder creates a recording of the HTTP protocol from URLs entered and links navigated in a Web browser application used to generate performance tests.</p>
30
31
<p>The URL Recorder supports the following Web browser applications:</p>
32
33
<ul>
34
	<li>Internet Explorer</li>
35
	<li>Mozilla</li>
36
	<li>Firefox</li>
37
</ul>
38
39
<p>By default, the system Web browser application is used by the URL Recorder.  The default Web browser application and port used by the URL Recorder
40
is configurable in the URL Recorder preferences:</p>
41
42
<ol>
43
 	<li>Select <b>Window</b> &gt; <b>Preferences...</b> from the file menu.</li>
44
	<li>Select the <b>Test</b> &gt; <b>TPTP URL</b> &gt; <b>URL Recorder</b> preference page.</li>
45
	<li>Configure the <b>Application to Record</b> by selecting one of the supported Web browser applications and the location of its executable.</li>
46
	<li>Configure the <b>Proxy Recorder</b> by defining the port of the URL Recorder.  The Web browser application is automatically configured with the URL Recorder as a proxy on this port for the duration of the recording.</li>
47
	<li>Click <b>OK</b> to save the preferences.</li>
48
</ol>
49
50
<p><b>Note:</b> The <a href="PLUGINS_ROOT/org.eclipse.tptp.platform.agentcontroller.doc.user/concepts/ac/c_ac_ovr.html">Agent Controller</a> or 
51
<a href="PLUGINS_ROOT/org.eclipse.tptp.platform.agentcontroller.doc.user/concepts/ac/ciacintro.html">Integrated Agent Controller</a> 
52
(local host only) is required to be configured and running.</p>
53
54
<p>Performance tests are created from new URL recordings with the <a href="../../org.eclipse.hyades.test.doc.user/tasks/tcreatetestfromrecording.htm">New Test From Recording</a> wizard:</p>
55
56
<ol>
57
	<li>Right-click in the Test Navigator, select <b>New</b> &gt; <b>Test Element...</b> &gt; <b>Test From Recording</b>, and click <b>Next</b>.  Alternatively, click the <b>New Test From Recording</b> button in the toolbar of the <a href="../../org.eclipse.hyades.test.doc.user/concepts/crecordercontrolview.htm">Recorder Control View</a>.</li>
58
    <li>Select <b>Create the test from a new recording</b>.</li>
59
    <li>Select the <b>URL Recorder</b> to record the new URL recording.</li>
60
    <li>Optionally, click <b>Advanced &gt;&gt;</b> and confirm the <b>TPTP URL Test Generator</b> is selected to create the new performance test from the new URL recording.</li> 
61
    <li>Click <b>Next</b>.</li>
62
    <li>If there are no projects in the workspace, define the project name, project location, and name of the new performance test.  Otherwise, select the parent folder and define the name of the new performance test.</li>
63
    <li>Click <b>Finish</b> to open the <a href="../../org.eclipse.hyades.test.doc.user/concepts/crecordercontrolview.htm">Recorder Control View</a> to control and monitor the URL Recorder and launch the Web browser application configured with the URL Recorder to create the new URL recording.</li>
64
    <li>Clear the Web browser application's cache:
65
	    <ul>
66
			<li>Internet Explorer:
67
				<ol>
68
					<li>Select <b>Tools</b> &gt; <b>Internet Options</b> from the file menu.</li>
69
					<li>Click <b>Delete Files</b></li>
70
					<li>Select <b>Delete all offline content</b> and click <b>OK</b>.</li>
71
					<li>Click <b>OK</b> to close the Internet Options dialog.</li>
72
				</ol>
73
			</li>
74
			<li>Mozilla:
75
				<ol>
76
					<li>Select <b>Edit</b> &gt; <b>Preferences</b> from the file menu.</li>
77
					<li>Expand <b>Advanced</b> and click <b>Cache</b>.</li>
78
					<li>Click <b>Clear Cache</b>.</li>
79
					<li>Click <b>OK</b> to close the Preferences dialog.</li>
80
				</ol>
81
			</li>
82
			<li>Firefox:
83
				<ol>
84
					<li>Select <b>Tools</b> &gt; <b>Clear Private Data...</b> from the file menu.</li>
85
					<li>Select <b>Cache</b>.</li>
86
					<li>Click <b>Clear Private Data Now</b> to close the Clear Private Data dialog.</li>
87
				</ol>
88
			</li>
89
		</ul>
90
	</li>
91
	<li>Enter the URLs in the address box and navigate links in the the Web browser application to record the HTTP protocol.  Note, 
92
	secure URLs (for example, <code>https://</code>) may cause the Web browser application to display a security alert that should be accepted to proceed with the URL recording.</li>
93
	<li>Once the URL recording is complete, close the Web browser application or click the <b>Stop Recording</b> button in the toolbar of the <a href="../../org.eclipse.hyades.test.doc.user/concepts/crecordercontrolview.htm">Recorder Control View</a> to stop the recording and create the new performance test from the new URL recording.</li>  
94
    <li>The <b>Confirm Open Editor</b> dialog may appear (see the <b>Window</b> &gt; <b>Preferences...</b> &gt; <b>Test</b> &gt; <b>Open Editor</b> preference), confirming if the new performance test is to be opened in the URL Test editor.</li>
95
</ol>
96
97
<p>In addition, performance tests can be created from existing URL recordings with the <b>New Test From Recording</b> wizard:</p>
98
99
<ol>
100
	<li>Right-click in the Test Navigator, select <b>New</b> &gt; <b>Test Element...</b> &gt; <b>Test From Recording</b>, and click <b>Next</b>.  Alternatively, click the <b>New Test From Recording</b> button in the toolbar of the <a href="../../org.eclipse.hyades.test.doc.user/concepts/crecordercontrolview.htm">Recorder Control View</a>.</li>
101
    <li>Select <b>Test From Recording</b> and click <b>Next</b>.</li>
102
    <li>Select <b>Create the test from an existing URL recording</b>.</li>
103
    <li>Select the <b>URL Recorder</b> to record the new URL recording.</li>
104
    <li>Optionally, click <b>Advanced &gt;&gt;</b> and confirm the <b>TPTP URL Test Generator</b> is selected to create the new performance test from the new URL recording.</li> 
105
    <li>Click <b>Next</b>.</li>
106
	<li>Select the existing URL recording and click <b>Next</b>.</li>
107
    <li>Select the parent folder and define the name of the new performance test.</li>
108
    <li>Click <b>Finish</b> to create the new performance test from the existing URL recording.</li>
109
    <li>The <b>Confirm Open Editor</b> dialog may appear (see the <b>Window</b> &gt; <b>Preferences...</b> &gt; <b>Test</b> &gt; <b>Open Editor</b> preference), confirming if the new performance test is to be opened in the URL Test editor.</li>
110
</ol>
111
112
<p>Alternatively, performance tests can be created from existing URL recording files with the <b>New Test From Recording</b> wizard:</p>
113
114
<ol>
115
	<li>Right-click the existing URL recording file (<i>*.recmodel</i>) in the Project Explorer and select <b>Generate Test</b>.</li>
116
    <li>Select <b>TPTP URL Test Generator</b> to create the new performance test from the existing URL recording file and click <b>Next</b>.</li>
117
    <li>Select the parent folder and define the name of the new performance test.</li>
118
    <li>Click <b>Finish</b> to create the new performance test from the existing URL recording file.</li>
119
    <li>The <b>Confirm Open Editor</b> dialog may appear (see the <b>Window</b> &gt; <b>Preferences...</b> &gt; <b>Test</b> &gt; <b>Open Editor</b> preference), confirming if the new performance test is to be opened in the URL Test editor.</li>
120
</ol>
121
122
<p>
123
<b>Related concepts</b><br/>
124
<a href="../../org.eclipse.hyades.test.doc.user/concepts/crecordercontrolview.htm">Recorder Control View</a><br/>
125
</p>
126
127
<p>
128
<b>Related tasks</b><br/>
129
<a href="../../org.eclipse.hyades.test.doc.user/tasks/tcreatetestfromrecording.htm">Creating a test from a recording</a><br/>
130
</p>
131
132
</body>
133
</html>
(-)tasks/treporttest.xhtml (-2 / +2 lines)
Lines 3-9 Link Here
3
<html lang="en-us" xml:lang="en-us" xmlns="http://www.w3.org/1999/xhtml">
3
<html lang="en-us" xml:lang="en-us" xmlns="http://www.w3.org/1999/xhtml">
4
<!-- 
4
<!-- 
5
/**********************************************************************
5
/**********************************************************************
6
 * Copyright (c) 2006, 2008 IBM Corporation.
6
 * Copyright (c) 2006, 2009 IBM Corporation.
7
 * All rights reserved. This content
7
 * All rights reserved. This content
8
 * is made available under the terms of the Eclipse Public License v1.0
8
 * is made available under the terms of the Eclipse Public License v1.0
9
 * which accompanies this distribution, and is available at
9
 * which accompanies this distribution, and is available at
Lines 64-70 Link Here
64
<ol>
64
<ol>
65
  <li>Right-click on a test suite in the Test Navigator and select <b>Report... </b>.</li>
65
  <li>Right-click on a test suite in the Test Navigator and select <b>Report... </b>.</li>
66
  <li>Select one of the BIRT test report types and click <b>Next </b>.</li>
66
  <li>Select one of the BIRT test report types and click <b>Next </b>.</li>
67
  <li>Provide the parent folder and the name for the BIRT test report and click <b>Next</b>.</li>
67
  <li>Select the parent folder and define the name of the BIRT test report and click <b>Next</b>.</li>
68
  <li>Optionally, provide the report window (start and end data and time) for the BIRT test report.</li>
68
  <li>Optionally, provide the report window (start and end data and time) for the BIRT test report.</li>
69
  <li>Click <b>Finish </b> to generate the BIRT test report.</li>
69
  <li>Click <b>Finish </b> to generate the BIRT test report.</li>
70
  <li>The <b>Confirm Open Editor</b> dialog may appear (see the <b>Window</b> &gt; <b>Preferences...</b> &gt; <b>Test</b> &gt; <b>Open Editor</b> preference), confirming if the new BIRT test report is to be opened in the internal Web Browser or text editor.</li>	
70
  <li>The <b>Confirm Open Editor</b> dialog may appear (see the <b>Window</b> &gt; <b>Preferences...</b> &gt; <b>Test</b> &gt; <b>Open Editor</b> preference), confirming if the new BIRT test report is to be opened in the internal Web Browser or text editor.</li>	
(-)toc/birt_test_reporting_services_toc.xml (-2 / +2 lines)
Lines 1-7 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!-- 
2
<!-- 
3
/**********************************************************************
3
/**********************************************************************
4
 * Copyright (c) 2008 IBM Corporation.
4
 * Copyright (c) 2008, 2009 IBM Corporation.
5
 * All rights reserved. This content is made available under 
5
 * All rights reserved. This content is made available under 
6
 * the terms of the Eclipse Public License v1.0
6
 * the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
7
 * which accompanies this distribution, and is available at
Lines 13-19 Link Here
13
 **********************************************************************/  
13
 **********************************************************************/  
14
 -->
14
 -->
15
<?NLS TYPE="org.eclipse.help.toc"?>
15
<?NLS TYPE="org.eclipse.help.toc"?>
16
<toc label="BIRT Reporting Services" link_to="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/toc/common_toc.xml#additional_automatable_services"> 
16
<toc label="BIRT Reporting Services" link_to="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/toc/automatable_services_toc.xml#additional_automatable_services"> 
17
	<topic label="Using the BIRT test reporting services" href="tasks/texecuting-the-test-reporting-service.htm"/>           
17
	<topic label="Using the BIRT test reporting services" href="tasks/texecuting-the-test-reporting-service.htm"/>           
18
</toc>
18
</toc>
19
19
(-)toc/birt_test_reports_toc.xml (-2 / +2 lines)
Lines 1-7 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!-- 
2
<!-- 
3
/**********************************************************************
3
/**********************************************************************
4
 * Copyright (c) 2007, 2008 IBM Corporation.
4
 * Copyright (c) 2007, 2009 IBM Corporation.
5
 * All rights reserved. This content is made available under 
5
 * All rights reserved. This content is made available under 
6
 * the terms of the Eclipse Public License v1.0
6
 * the terms of the Eclipse Public License v1.0
7
 * which accompanies this distribution, and is available at
7
 * which accompanies this distribution, and is available at
Lines 13-19 Link Here
13
 **********************************************************************/  
13
 **********************************************************************/  
14
 -->
14
 -->
15
<?NLS TYPE="org.eclipse.help.toc"?>
15
<?NLS TYPE="org.eclipse.help.toc"?>
16
<toc label="Reporting" link_to="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/toc/testreports_toc.xml#additional_test_reports"> 
16
<toc label="Reporting" link_to="PLUGINS_ROOT/org.eclipse.hyades.test.doc.user/toc/test_reports_toc.xml#additional_test_reports"> 
17
	<topic label="Generating BIRT test reports" href="tasks/treporttest.xhtml"/>           
17
	<topic label="Generating BIRT test reports" href="tasks/treporttest.xhtml"/>           
18
</toc>
18
</toc>
19
19

Return to bug 246111