97c47beecdd9e9fc6960c7e6dfa6c8c68e1ade35
[jalview.git] / test / jalview / schemes / StrandColourSchemeTest.java
1 package jalview.schemes;
2
3 import static org.testng.Assert.assertEquals;
4
5 import java.awt.Color;
6
7 import org.testng.annotations.Test;
8
9 public class StrandColourSchemeTest
10 {
11   /**
12    * Turn colours are based on the scores in ResidueProperties.strand A = 0.83,
13    * R = 0.93, N = 0.89, D = 0.54... min = 0.37 max = 1.7
14    * <p>
15    * scores are scaled to c 0-1 between min and max and colour is (c, c, 1-c)
16    */
17   @Test(groups = "Functional")
18   public void testFindColour()
19   {
20     ScoreColourScheme scheme = new StrandColourScheme();
21
22     float min = 0.37f;
23     float max = 1.7f;
24     float a = (0.83f - min) / (max - min);
25     assertEquals(scheme.findColour('A', 0, null), new Color(a, a, 1 - a));
26
27     float d = (0.54f - min) / (max - min);
28     assertEquals(scheme.findColour('D', 0, null), new Color(d, d, 1 - d));
29
30     assertEquals(scheme.findColour('-', 0, null), Color.WHITE);
31   }
32
33 }