19 lines
341 B
Java
19 lines
341 B
Java
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"));
|
|
}
|
|
}
|