public void HelloWorld_Is_Highlighted_After_Execution_UITest()
        {
            UIMap.InitializeABlankWorkflow();
            ExplorerUIMap.Filter_Explorer("Hello World");
            WorkflowTabUIMap.Drag_Explorer_workflow_Onto_Workflow_Design_Surface();
            UIMap.Press_F6();
            var helloWorldIsHighlighted = WorkflowTabUIMap.MainStudioWindow.DockManager.SplitPaneMiddle.TabManSplitPane.TabMan.WorkflowTab.WorkSurfaceContext.WorkflowDesignerView.DesignerView.ScrollViewerPane.ActivityTypeDesigner.WorkflowItemPresenter.Flowchart.HelloWorldWorkFlow.ItemStatus.Contains("IsPrimarySelection=True IsSelection=True");

            Assert.IsTrue(helloWorldIsHighlighted, "Sub-workflow is not selected on the design surface after it was executed with the F6 keyboard shortcut.");
        }