Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Is it possible to run every SWTBot test in a new eclipse instance using tycho-surefire-plugin?

This currently isn’t possible. There is a request for this feature here: https://bugs.eclipse.org/bugs/show_bug.cgi?id=380171

 

Regards

Tobias

 

 

From: tycho-user-bounces@xxxxxxxxxxx [mailto:tycho-user-bounces@xxxxxxxxxxx] On Behalf Of Aleksandar Toshovski
Sent: Mittwoch, 14. November 2012 10:22
To: tycho-user@xxxxxxxxxxx
Subject: [tycho-user] Is it possible to run every SWTBot test in a new eclipse instance using tycho-surefire-plugin?

 


Hi,

Using the following code runs all SWTBot tests in the same application instance. How can I run every test in a new eclipse instance?


<build>
    <plugins>
        <plugin>
            <groupId>org.eclipse.tycho</groupId>
            <artifactId>tycho-surefire-plugin</artifactId>
            <version>0.15</version>
            <configuration>
              <useUIHarness>true</useUIHarness>
              <useUIThread>false</useUIThread>
              <product>org.eclipse.sdk.ide</product>
              <application>org.eclipse.ui.ide.workbench</application>
            </configuration>
        </plugin>
    </plugins>
</build>

Regards
Alex


Back to the top