Skip to content

Commit

Permalink
Add a basic test for the CustomizedClusterComponent
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhahmann committed Nov 6, 2023
1 parent beabfbd commit 9919613
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package org.mastodon.mamut.clustering.ui;

import com.apporiented.algorithm.clustering.Cluster;
import org.junit.Test;

import java.awt.Color;

import static org.junit.Assert.assertNotNull;

public class CustomizedClusterComponentTest
{

@Test
public void testCustomizedClusterComponent()
{
Cluster cluster = null;
CustomizedClusterComponent customizedClusterComponent = new CustomizedClusterComponent( cluster, true, null, Color.BLUE );
assertNotNull( customizedClusterComponent );
}
}

0 comments on commit 9919613

Please sign in to comment.