Clover icon

jalviewX

  1. Project Clover database Wed Oct 31 2018 15:13:58 GMT
  2. Package jalview.schemes

File TurnColourSchemeTest.java

 

Code metrics

0
8
1
1
35
21
1
0.12
8
1
1

Classes

Class Line # Actions
TurnColourSchemeTest 9 8 1 0
1.0100%
 

Contributing tests

This file is covered by 1 test. .

Source view

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  1 toggle @Test(groups = "Functional")
18    public void testFindColour()
19    {
20  1 ScoreColourScheme scheme = new TurnColourScheme();
21   
22  1 float min = 0.47f;
23  1 float max = 1.56f;
24  1 float a = (0.66f - min) / (max - min);
25  1 assertEquals(scheme.findColour('A', 0, null),
26    new Color(a, 1 - a, 1 - a));
27   
28  1 float d = (1.46f - min) / (max - min);
29  1 assertEquals(scheme.findColour('D', 0, null),
30    new Color(d, 1 - d, 1 - d));
31   
32  1 assertEquals(scheme.findColour('-', 0, null), Color.WHITE);
33    }
34   
35    }