From 5bd2ca8797c0bf5f1c6875d8a64d6ff1a76f6ffe Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1s=C3=A1ry=20D=C3=A1niel?= Date: Wed, 16 Oct 2019 11:09:15 +0000 Subject: [PATCH] git-tfs-id: [http://tfs.userrendszerhaz.hu:8080/tfs/DefaultCollection]$/MediaCube;C31572 --- server/-configuration/run-mediacube-server-user.launch | 2 +- server/-product/mediacube.product | 5 +++++ .../hu/user/mediacube/executors/tests/SmallTests.java | 10 ++++++++++ 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/server/-configuration/run-mediacube-server-user.launch b/server/-configuration/run-mediacube-server-user.launch index 98399b86..218f7196 100644 --- a/server/-configuration/run-mediacube-server-user.launch +++ b/server/-configuration/run-mediacube-server-user.launch @@ -19,7 +19,7 @@ - + diff --git a/server/-product/mediacube.product b/server/-product/mediacube.product index d84dca49..115d4574 100644 --- a/server/-product/mediacube.product +++ b/server/-product/mediacube.product @@ -103,6 +103,7 @@ + @@ -159,10 +160,14 @@ + + + + diff --git a/server/hu.user.mediacube.executors.tests/src/hu/user/mediacube/executors/tests/SmallTests.java b/server/hu.user.mediacube.executors.tests/src/hu/user/mediacube/executors/tests/SmallTests.java index edb95216..d693a2d7 100644 --- a/server/hu.user.mediacube.executors.tests/src/hu/user/mediacube/executors/tests/SmallTests.java +++ b/server/hu.user.mediacube.executors.tests/src/hu/user/mediacube/executors/tests/SmallTests.java @@ -1,6 +1,7 @@ package hu.user.mediacube.executors.tests; import java.util.Arrays; +import java.util.List; import org.junit.Test; @@ -54,6 +55,15 @@ public class SmallTests { sut.run(null, null, inputs); } + @Test + public void test4() throws Exception { + List sut = Arrays.asList(1, 2, 3, 4, 5); + + List subList = sut.subList(0, 5); + subList.forEach(i -> System.out.println(i)); + + } + void xxx(int x, boolean y) { System.out.println("call"); } -- 2.54.0