Run a single plug-in test method using tycho-surefire-plugin
Asked Answered
H

1

7

How can I run a single plug-in test method in Maven using tycho-surefire-plugin?

I tried the -Dtest option with #, but it doesn't work:

mvn clean install -Dtest=MyUITest#testDummy

Is there something I am missing?

Hanny answered 19/9, 2013 at 7:32 Comment(0)
P
2

Your question is already answered here.

However you can use TestSuite and Filter to achieve what you want or even more customized selection of tests.

public class FilteredTests extends TestSuite {

public static TestSuite suite() {
    TestSuite suite = new TestSuite();

    suite.addTest(new JUnit4TestAdapter(YourTestClass.class).filter(new Filter() {

            @Override
            public boolean shouldRun(Description description) {
                return description.getMethodName().equals("Your_Method_name");
            }

            @Override
            public String describe() {
                // TODO Auto-generated method stub
                return null;
            }
        }));

    return suite;
}

}

Now configure tycho-surefire plugin to run this suite

<configuration>
                ...
                <testSuite>bundle.symbolic.name.of.test.plugin</testSuite>
                <testClass>package.of.test.suite.FilteredTests</testClass>
                ...
</configuration>
Psychogenic answered 19/9, 2013 at 8:3 Comment(4)
The accepted solution in the linked question is to use the hash character (#) as separator for the method name. According to Prasanth's question this doesn't work. Does it work for you?Cephalopod
I have the same issue, the # does not work for me either.Balfour
Can confirm the hash syntax does not work with the tycho-surefire-plugin. I've just resorted to ignoring the other test methods in my class, or moving it to a separate temporary class file and using -Dtest= to specify that class file. Frustrating that they don't maintain parity with the standard surefire plugin.Walloon
Frustrating indeed: the ${test} property in tycho-surefire only supports classes according to its documentation: eclipse.org/tycho/sitedocs/tycho-surefire/tycho-surefire-plugin/…Ey

© 2022 - 2024 — McMap. All rights reserved.