Created
January 4, 2018 00:44
-
-
Save JonathanLalou/b3e35db8be14259876c6c53ea7cfd582 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.github.jonathanlalou | |
import org.junit.Test | |
import static org.junit.Assert.fail | |
class RerunFailedTests { | |
@Test void testOne() { fail("testOne") } | |
@Test void two() { fail("two") } | |
@Test void "test three"() { fail("test three") } | |
@Test void 'test four'() { fail("test four") } | |
@Test void 'test, five'() { fail("test, five") } | |
@Test void 'test. six'() { fail("test. six") } | |
@Test void 'a.b'() { fail("a.b") } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
#IntelliJ #Groovy bug
** expected behaviour: all 7 tests are replayed
** actual behaviour: only 5 tests are played ; the tests 'test. six' and 'a.b' are discarded. The discriminating factor seems to be the '.' in the method name