Skip to content

Commit

Permalink
Update RecentProjectsPanel - fix wrong positions of open buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhahmann committed Nov 14, 2024
1 parent cdfb551 commit 4276221
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions src/test/java/org/mastodon/util/TagSetUtilsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand All @@ -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() );
Expand All @@ -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 );
Expand Down

0 comments on commit 4276221

Please sign in to comment.