diff --git a/src/test/java/org/mastodon/mamut/clustering/ui/CustomizedClusterComponentTest.java b/src/test/java/org/mastodon/mamut/clustering/ui/CustomizedClusterComponentTest.java new file mode 100644 index 000000000..fa3377faf --- /dev/null +++ b/src/test/java/org/mastodon/mamut/clustering/ui/CustomizedClusterComponentTest.java @@ -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 ); + } +}