public OpenTestCaseHandler() {
}
public Object execute(ExecutionEvent event) throws ExecutionException {
ISelection selection = HandlerUtil.getCurrentSelection(event);
OpenTestCaseAction action = new OpenTestCaseAction();
action.selectionChanged(null, selection);
action.run(null);
return null;
}