5e6baf0dd99fc41597f00671413a204cbf00021a
[jalview.git] / test / jalview / schemes / TurnColourSchemeTest.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 TurnColourSchemeTest
10 {
11   /**
12    * Turn colours are based on the scores in ResidueProperties.turn A = 0.66, R
13    * = 0.95, N = 1.56, D = 1.46... min = 0.47 max = 1.56
14    * <p>
15    * scores are scaled to c 0-1 between min and max and colour is (c, 1-c, 1-c)
16    */
17   @Test(groups = "Functional")
18   public void testFindColour()
19   {
20     ScoreColourScheme scheme = new TurnColourScheme();
21
22     float min = 0.47f;
23     float max = 1.56f;
24     float a = (0.66f - min) / (max - min);
25     assertEquals(scheme.findColour('A', 0, null),
26             new Color(a, 1 - a, 1 - a));
27
28     float d = (1.46f - min) / (max - min);
29     assertEquals(scheme.findColour('D', 0, null),
30             new Color(d, 1 - d, 1 - d));
31
32     assertEquals(scheme.findColour('-', 0, null), Color.WHITE);
33   }
34
35 }