BAEL-1857 Delete StringFunctionTest.java

This commit is contained in:
josephine-barboza 2018-08-11 14:09:16 +05:30 committed by José Carlos Valero Sánchez
parent 24ba05ce0d
commit d78acb07a1
1 changed files with 0 additions and 18 deletions

View File

@ -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"));
}
}