Files
2024-05-05 20:48:56 +02:00

19 lines
519 B
Java

package com.thealgorithms.strings;
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
public class UpperTest {
@Test
public void toUpperCase() {
String input1 = "hello world";
String input2 = "hElLo WoRlD";
String input3 = "HELLO WORLD";
assertEquals("HELLO WORLD", Upper.toUpperCase(input1));
assertEquals("HELLO WORLD", Upper.toUpperCase(input2));
assertEquals("HELLO WORLD", Upper.toUpperCase(input3));
}
}