X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.tests.modelled.ui%2Fsrc%2Forg%2Fsimantics%2Ftests%2Fmodelled%2Fui%2FTestsUIUtils.java;fp=bundles%2Forg.simantics.tests.modelled.ui%2Fsrc%2Forg%2Fsimantics%2Ftests%2Fmodelled%2Fui%2FTestsUIUtils.java;h=c6bd1c28708d1fed48d642147ebc85994e79c73e;hp=0000000000000000000000000000000000000000;hb=3b5069d0d30e7de27f73d88d5e89d29052291a34;hpb=bf75fd9740858140eac90c18f0bca0aea3893248 diff --git a/bundles/org.simantics.tests.modelled.ui/src/org/simantics/tests/modelled/ui/TestsUIUtils.java b/bundles/org.simantics.tests.modelled.ui/src/org/simantics/tests/modelled/ui/TestsUIUtils.java new file mode 100644 index 000000000..c6bd1c287 --- /dev/null +++ b/bundles/org.simantics.tests.modelled.ui/src/org/simantics/tests/modelled/ui/TestsUIUtils.java @@ -0,0 +1,23 @@ +package org.simantics.tests.modelled.ui; + +import java.io.IOException; + +import org.eclipse.e4.ui.model.application.ui.basic.MPart; +import org.simantics.db.Resource; +import org.simantics.db.exception.DatabaseException; +import org.simantics.ui.workbench.e4.E4WorkbenchUtils; + +public class TestsUIUtils { + + private TestsUIUtils() { + } + + public static void runSTSTestAction(Resource test) throws DatabaseException, IOException { + MPart part = E4WorkbenchUtils.getMPartById(STSTestRunnerView.ID); + E4WorkbenchUtils.openAndShowPart(part); + Object obj = part.getObject(); + STSTestRunnerView view = (STSTestRunnerView) obj; + view.currentTest(test); + view.execute(); + } +}