From 205fc6031c8a6ae2418ba82c8e91c44c72dc5220 Mon Sep 17 00:00:00 2001 From: alaskowski <alaskowski@ethz.ch> Date: Mon, 23 Oct 2023 09:58:01 +0200 Subject: [PATCH] BIS-713: Debug prints added to test --- .../systemtest/api/v1/GeneralInformationServiceTest.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server-application-server/sourceTest/java/ch/systemsx/cisd/openbis/systemtest/api/v1/GeneralInformationServiceTest.java b/server-application-server/sourceTest/java/ch/systemsx/cisd/openbis/systemtest/api/v1/GeneralInformationServiceTest.java index dda91ecf0c4..3898c19ee12 100644 --- a/server-application-server/sourceTest/java/ch/systemsx/cisd/openbis/systemtest/api/v1/GeneralInformationServiceTest.java +++ b/server-application-server/sourceTest/java/ch/systemsx/cisd/openbis/systemtest/api/v1/GeneralInformationServiceTest.java @@ -2069,6 +2069,9 @@ public class GeneralInformationServiceTest extends SystemTestCase assertEquals(1, groups.size()); assertEquals("HCS_IMAGE_ANALYSIS_DATA", types.get(4).getCode()); assertEquals("[]", types.get(4).getPropertyTypeGroups().toString()); + for(int i=0;i<types.size();i++) { + System.out.println("||> " + i + " " + types.get(i).getCode()); + } assertEquals("LINK_TYPE", types.get(7).getCode()); assertEquals("[]", types.get(0).getPropertyTypeGroups().toString()); assertEquals("REQUIRES_EXPERIMENT", types.get(8).getCode()); -- GitLab