blob: 548560ea2f044f65dc72dd3626d5ffe74ea4f328 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Standards for Technology in Automotive Retail and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* David Carver (STAR) - bug 259053 - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xsl.launching.tests.testcase;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.source.SourceViewer;
import org.eclipse.ui.IWorkbenchPartSite;
import org.eclipse.wst.xsl.jaxp.debug.ui.internal.views.ResultRunnable;
public class MockResultRunnable extends ResultRunnable {
public MockResultRunnable(SourceViewer viewer, String results,
IWorkbenchPartSite site) {
super(viewer, results, site);
// TODO Auto-generated constructor stub
}
public IDocument testCreateDocument() {
return createDocument();
}
}