From 427622125de87617776a701e6be3c309fcdcb77e Mon Sep 17 00:00:00 2001 From: Stefan Hahmann Date: Wed, 13 Nov 2024 17:28:06 +0100 Subject: [PATCH] Update RecentProjectsPanel - fix wrong positions of open buttons --- .../org/mastodon/util/TagSetUtilsTest.java | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/test/java/org/mastodon/util/TagSetUtilsTest.java b/src/test/java/org/mastodon/util/TagSetUtilsTest.java index 34c30b7b6..a3495414b 100644 --- a/src/test/java/org/mastodon/util/TagSetUtilsTest.java +++ b/src/test/java/org/mastodon/util/TagSetUtilsTest.java @@ -50,28 +50,28 @@ public class TagSetUtilsTest { - private final static String tagSetName = "testTagSet"; + private static final String TAG_SET_NAME = "testTagSet"; - private final static String tagLabel0 = "tag0"; + private static final String TAG_LABEL_0 = "tag0"; - private final static String tagLabel1 = "tag1"; + private static final String TAG_LABEL_1 = "tag1"; - private final static String tagLabel2 = "tag2"; + private static final String TAG_LABEL_2 = "tag2"; - private final static Color tagColor0 = Color.red; + private static final Color tagColor0 = Color.red; - private final static Color tagColor1 = Color.green; + private static final Color tagColor1 = Color.green; - private final static Color tagColor2 = Color.blue; + private static final Color tagColor2 = Color.blue; - private final static Collection< Pair< String, Integer > > tagsAndColors = initTagsAndColors(); + private static final Collection< Pair< String, Integer > > tagsAndColors = initTagsAndColors(); private static Collection< Pair< String, Integer > > initTagsAndColors() { Collection< Pair< String, Integer > > tagsAndColors = new ArrayList<>(); - tagsAndColors.add( Pair.of( tagLabel0, tagColor0.getRGB() ) ); - tagsAndColors.add( Pair.of( tagLabel1, tagColor1.getRGB() ) ); - tagsAndColors.add( Pair.of( tagLabel2, tagColor2.getRGB() ) ); + tagsAndColors.add( Pair.of( TAG_LABEL_0, tagColor0.getRGB() ) ); + tagsAndColors.add( Pair.of( TAG_LABEL_1, tagColor1.getRGB() ) ); + tagsAndColors.add( Pair.of( TAG_LABEL_2, tagColor2.getRGB() ) ); return tagsAndColors; } @@ -80,15 +80,15 @@ public void testAddNewTagSetToModel() { ExampleGraph1 exampleGraph1 = new ExampleGraph1(); - TagSetUtils.addNewTagSetToModel( exampleGraph1.getModel(), tagSetName, tagsAndColors ); + TagSetUtils.addNewTagSetToModel( exampleGraph1.getModel(), TAG_SET_NAME, tagsAndColors ); TagSetStructure.TagSet tagSet = exampleGraph1.getModel().getTagSetModel().getTagSetStructure().getTagSets().get( 0 ); - assertEquals( tagSetName, tagSet.getName() ); + assertEquals( TAG_SET_NAME, tagSet.getName() ); assertEquals( tagsAndColors.size(), tagSet.getTags().size() ); - assertEquals( tagLabel0, tagSet.getTags().get( 0 ).label() ); - assertEquals( tagLabel1, tagSet.getTags().get( 1 ).label() ); - assertEquals( tagLabel2, tagSet.getTags().get( 2 ).label() ); + assertEquals( TAG_LABEL_0, tagSet.getTags().get( 0 ).label() ); + assertEquals( TAG_LABEL_1, tagSet.getTags().get( 1 ).label() ); + assertEquals( TAG_LABEL_2, tagSet.getTags().get( 2 ).label() ); assertEquals( tagColor0.getRGB(), tagSet.getTags().get( 0 ).color() ); assertEquals( tagColor1.getRGB(), tagSet.getTags().get( 1 ).color() ); assertEquals( tagColor2.getRGB(), tagSet.getTags().get( 2 ).color() ); @@ -100,7 +100,7 @@ public void tagSpotAndOutgoingEdges() ExampleGraph2 exampleGraph2 = new ExampleGraph2(); Model model = exampleGraph2.getModel(); - TagSetStructure.TagSet tagSet = TagSetUtils.addNewTagSetToModel( exampleGraph2.getModel(), tagSetName, tagsAndColors ); + TagSetStructure.TagSet tagSet = TagSetUtils.addNewTagSetToModel( exampleGraph2.getModel(), TAG_SET_NAME, tagsAndColors ); TagSetStructure.Tag tag0 = tagSet.getTags().get( 0 ); TagSetUtils.tagSpotAndOutgoingEdges( exampleGraph2.getModel(), tagSet, tag0, exampleGraph2.spot0 );