Update StringIteratorTest.java

This commit is contained in:
Neetika23
2023-10-27 14:52:14 +05:30
committed by GitHub
parent 66604b8e27
commit befba49dec
@@ -29,14 +29,6 @@ public class StringIteratorTest {
assertEquals(expectedOutput, result);
}
@Test
public void whenUseRegexSplit_thenIterate() {
String input = "Hello, Baeldung!";
String expectedOutput = "Hello, Baeldung!";
String result = StringIterator.javaRegExp(input);
assertEquals(expectedOutput, result);
}
@Test
public void whenUseCharacterIterator_thenIterate() {
String input = "Hello, Baeldung!";