BAEL-1857 Delete StringFunctionTest.java
This commit is contained in:
parent
24ba05ce0d
commit
d78acb07a1
|
@ -1,18 +0,0 @@
|
|||
package com.baeldung;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
public class StringFunctionTest {
|
||||
|
||||
@Test
|
||||
public void test_upperCase() {
|
||||
assertEquals("TESTCASE", "testCase".toUpperCase());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void test_indexOf() {
|
||||
assertEquals(1, "testCase".indexOf("e"));
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue