// m_treeViewer = new TreeViewer(m_sashForm, SWT.SINGLE);
//
// Stack trace (FailureComponent)
//
ViewForm stackTraceForm = new ViewForm(m_sashForm, SWT.NONE);
stackTraceForm.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
CLabel label = new CLabel(stackTraceForm, SWT.NONE);
label.setText(ResourceUtil.getString("TestRunnerViewPart.label.failure")); //$NON-NLS-1$
label.setImage(m_stackViewIcon);
stackTraceForm.setTopLeft(label);
ToolBar failureToolBar = new ToolBar(stackTraceForm, SWT.FLAT | SWT.WRAP);
stackTraceForm.setTopCenter(failureToolBar);
m_failureTraceComponent = new FailureTrace(stackTraceForm, m_testRunnerPart, failureToolBar);
stackTraceForm.setContent(m_failureTraceComponent.getComposite());
m_sashForm.setWeights(new int[] { 50, 50 });
initImages();
initMenu();