Skip to content

Commit 8268257

Browse files
committed
Added section Predicate Evaluation Order
1 parent 123a99a commit 8268257

File tree

1 file changed

+5
-0
lines changed
  • core-java/functional-programming/functional-interfaces/src/test/java/io/reflectoring/function

1 file changed

+5
-0
lines changed

core-java/functional-programming/functional-interfaces/src/test/java/io/reflectoring/function/OperatorTest.java

+5
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,14 @@
1010
import org.junit.jupiter.api.Assertions;
1111
import org.junit.jupiter.api.Test;
1212

13+
import io.reflectoring.function.custom.ArithmeticOperation;
14+
import jakarta.validation.constraints.NotNull;
15+
1316
public class OperatorTest {
1417
@Test
1518
void unaryOperator() {
19+
ArithmeticOperation add = (var a, var b) -> a + b;
20+
ArithmeticOperation addNullSafe = (@NotNull var a, @NotNull var b) -> a + b;
1621
UnaryOperator<String> trim = value -> value == null ? null : value.trim();
1722
UnaryOperator<String> upperCase = value -> value == null ? null : value.toUpperCase();
1823
Function<String, String> transform = trim.andThen(upperCase);

0 commit comments

Comments
 (0)