ttt307307 / junitparams

Automatically exported from code.google.com/p/junitparams
0 stars 0 forks source link

Should count properly when test ignored #14

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago

import junitparams.JUnitParamsRunner;
import junitparams.Parameters;

import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;

@RunWith(JUnitParamsRunner.class)
public class JunitParamsTest {

    @Test
    @Ignore
    @Parameters({ "a", "b" })
    public void shouldCountProperlyWhenSomeTestsIgnored(String a) {
    }

}

Original issue reported on code.google.com by tomasz.b...@pragmatists.pl on 5 Jan 2012 at 8:10

GoogleCodeExporter commented 8 years ago
Effect is Runs 4/2 (4 ignored), while it should be Runs 2/2 (2 ignored)

Original comment by tomasz.b...@pragmatists.pl on 5 Jan 2012 at 8:11

GoogleCodeExporter commented 8 years ago

Original comment by lipinski...@gmail.com on 9 Jan 2012 at 12:16