/
NikolayIvkin
/
TheAlgorithms
Обзор
Документация
Войти
/
NikolayIvkin
/
TheAlgorithms
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/test/java/com/thealgorithms/strings/UpperTest.java
18 строк
519 B
Piotr Idzik
style: enable `AvoidStarImport` in checkstyle (#5141)
05 май 2024, 21:48
Не верифицирован
05 май 2024, 21:48
414835d
Код
Авторство
О чём код?
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)); } }