We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83f3ac6 commit 19efa5aCopy full SHA for 19efa5a
src/test/java/com/github/streams/learn/functional_interfaces/B_FunctionTest.java
@@ -10,7 +10,7 @@ class B_FunctionTest {
10
/** Write a lambda expression that wraps the given string in parentheses. */
11
@Test
12
@Disabled
13
- public void function1() {
+ void function1() {
14
Function<String, String> func = null; // TODO
15
16
assertEquals("(abc)", func.apply("abc"));
@@ -20,7 +20,7 @@ public void function1() {
20
/** Write a lambda expression that converts the given string to upper case. */
21
22
23
- public void function2() {
+ void function2() {
24
25
26
assertEquals("ABC", func.apply("abc"));
0 commit comments