You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@maven.apache.org by "Tibor Digana (JIRA)" <ji...@apache.org> on 2016/02/10 18:35:18 UTC

[jira] [Comment Edited] (SUREFIRE-1225) Can't run a single parameterized test

    [ https://issues.apache.org/jira/browse/SUREFIRE-1225?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15141255#comment-15141255 ] 

Tibor Digana edited comment on SUREFIRE-1225 at 2/10/16 5:34 PM:
-----------------------------------------------------------------

{{mvn test -Dtest=com.github.baev.MyTest#testWithParameters+testWithParameters[*]}}
This runs both exact method name and parameterized test as well.


was (Author: tibor17):
mvn test -Dtest=com.github.baev.MyTest#testWithParameters+testWithParameters[*]
This runs both exact method name and parameterized test as well.

> Can't run a single parameterized test
> -------------------------------------
>
>                 Key: SUREFIRE-1225
>                 URL: https://issues.apache.org/jira/browse/SUREFIRE-1225
>             Project: Maven Surefire
>          Issue Type: Bug
>    Affects Versions: 2.19.1
>            Reporter: Dmitry Baev
>
> The sample test to reproduce the problem:
> {code:java|title=com/github/baev/MyTest.java}
> @RunWith(Parameterized.class)
> public class MyTest {
>     @Parameterized.Parameters
>     public static Collection<Object[]> data() {
>         return Arrays.asList(
>                 new Object[]{},
>                 new Object[]{}
>         );
>     }
>     @Test
>     public void testWithParameters() throws Exception {
>     }
> }
> {code}
> and then run 
> {{clean test -Dtest=com.github.baev.MyTest#testWithParameters}}
> The output is
> {{Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.19.1:test (default-test) on project surefire-base-test-bug: No tests were executed!}}
> Is it expected?



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)