JAVA-11422 Update article - A Guide To Java Regular Expressions API
This commit is contained in:
parent
9c61c1ce39
commit
147d60e528
|
@ -104,7 +104,7 @@ public class RegexUnitTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void givenNumberRange_whenMatchesAccurately_thenCorrect2() {
|
public void givenNumberRange_whenMatchesAccurately_thenCorrect2() {
|
||||||
int matches = runTest("[30-35]", "Two Uppercase alphabets 34 overall");
|
int matches = runTest("3[0-5]", "Two Uppercase alphabets 34 overall");
|
||||||
assertTrue(matches > 0);
|
assertTrue(matches > 0);
|
||||||
assertEquals(matches, 1);
|
assertEquals(matches, 1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue