Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrescobar2010-12-18 00:09:27 +0000
committerRyan D. Brooks2010-12-18 00:09:27 +0000
commit87923194cbbcda2d35d64a0a2101957bd1727100 (patch)
treef9263e3966b740426b5c0a131703363080e63595 /plugins/org.eclipse.osee.framework.help.ui
parent55f469aacda8af7dcaf14759732932e26efc36bb (diff)
downloadorg.eclipse.osee-87923194cbbcda2d35d64a0a2101957bd1727100.tar.gz
org.eclipse.osee-87923194cbbcda2d35d64a0a2101957bd1727100.tar.xz
org.eclipse.osee-87923194cbbcda2d35d64a0a2101957bd1727100.zip
bug[ats_JGX6U]: Fix test run view help content
Diffstat (limited to 'plugins/org.eclipse.osee.framework.help.ui')
-rw-r--r--plugins/org.eclipse.osee.framework.help.ui/contexts/contexts.xml5
-rw-r--r--plugins/org.eclipse.osee.framework.help.ui/src/org/eclipse/osee/framework/help/ui/OseeHelpContext.java2
2 files changed, 7 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.framework.help.ui/contexts/contexts.xml b/plugins/org.eclipse.osee.framework.help.ui/contexts/contexts.xml
index 5f6a7fd453f..8d167e9695e 100644
--- a/plugins/org.eclipse.osee.framework.help.ui/contexts/contexts.xml
+++ b/plugins/org.eclipse.osee.framework.help.ui/contexts/contexts.xml
@@ -117,6 +117,11 @@
<topic href="OSEE/Users_Guide/Features/Views-and-Editors.html#Sky_Walker_View" label="Sky Walker View"/>
</context>
+ <context id="test_run_view" title="Test Run View">
+ <description>The Test Run View provides an integration point with OTE (OSEE Test Environment).</description>
+ <topic href="OSEE/Users_Guide/Features/Views-and-Editors.html#Test_Run_View" label="Test Run View"/>
+ </context>
+
<context id="change_report_editor" title="Change Report Editor">
<description>Shows all changes made to a branch.</description>
<topic href="OSEE/Users_Guide/Features/Views-and-Editors.html#Change_Report_Editor" label="Change Report Editor"/>
diff --git a/plugins/org.eclipse.osee.framework.help.ui/src/org/eclipse/osee/framework/help/ui/OseeHelpContext.java b/plugins/org.eclipse.osee.framework.help.ui/src/org/eclipse/osee/framework/help/ui/OseeHelpContext.java
index 4253b125e23..07f7b6a65ba 100644
--- a/plugins/org.eclipse.osee.framework.help.ui/src/org/eclipse/osee/framework/help/ui/OseeHelpContext.java
+++ b/plugins/org.eclipse.osee.framework.help.ui/src/org/eclipse/osee/framework/help/ui/OseeHelpContext.java
@@ -49,6 +49,8 @@ public final class OseeHelpContext {
public static final HelpContext SKY_WALKER_VIEW = toContext("sky_walker_view");
+ public static final HelpContext TEST_RUN_VIEW = toContext("test_run_view");
+
public static final HelpContext TABLE_CUSTOMIZATIONS = toContext("xviewer_table_customization");
public static final HelpContext RESULTS_VIEW = toContext("xviewer_xresult_view");

Back to the top