Driver Code
(String[] args)
| 8 | * Driver Code |
| 9 | */ |
| 10 | public static void main(String[] args) { |
| 11 | String[] strings = {"ABC", "ABC123", "abcABC", "abc123ABC"}; |
| 12 | for (String s : strings) { |
| 13 | assert toUpperCase(s).equals(s.toUpperCase()); |
| 14 | } |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * Converts all the characters in this {@code String} to upper case. |
nothing calls this directly
no test coverage detected