Clover icon

Coverage Report

  1. Project Clover database Thu Nov 7 2024 10:11:34 GMT
  2. Package jalview.util

File SetUtilsTest.java

 

Code metrics

0
21
1
1
66
34
1
0.05
21
1
1

Classes

Class Line # Actions
SetUtilsTest 31 21 1
1.0100%
 

Contributing tests

This file is covered by 1 test. .

Source view

1    /*
2    * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3    * Copyright (C) $$Year-Rel$$ The Jalview Authors
4    *
5    * This file is part of Jalview.
6    *
7    * Jalview is free software: you can redistribute it and/or
8    * modify it under the terms of the GNU General Public License
9    * as published by the Free Software Foundation, either version 3
10    * of the License, or (at your option) any later version.
11    *
12    * Jalview is distributed in the hope that it will be useful, but
13    * WITHOUT ANY WARRANTY; without even the implied warranty
14    * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15    * PURPOSE. See the GNU General Public License for more details.
16    *
17    * You should have received a copy of the GNU General Public License
18    * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19    * The Jalview Authors are detailed in the 'AUTHORS' file.
20    */
21    package jalview.util;
22   
23    import static org.testng.Assert.assertEquals;
24   
25    import java.awt.Color;
26    import java.util.HashSet;
27    import java.util.Set;
28   
29    import org.testng.annotations.Test;
30   
 
31    public class SetUtilsTest
32    {
 
33  1 toggle @Test(groups = "Functional")
34    public void testCountDisjunction()
35    {
36  1 Set<Color> s1 = new HashSet<Color>();
37  1 assertEquals(SetUtils.countDisjunction(null, null), 0);
38  1 assertEquals(SetUtils.countDisjunction(s1, null), 0);
39  1 assertEquals(SetUtils.countDisjunction(null, s1), 0);
40  1 s1.add(Color.white);
41  1 assertEquals(SetUtils.countDisjunction(s1, null), 1);
42  1 assertEquals(SetUtils.countDisjunction(null, s1), 1);
43  1 assertEquals(SetUtils.countDisjunction(s1, null), 1);
44  1 assertEquals(SetUtils.countDisjunction(s1, s1), 0);
45   
46  1 Set<Object> s2 = new HashSet<Object>();
47  1 assertEquals(SetUtils.countDisjunction(s2, s2), 0);
48  1 assertEquals(SetUtils.countDisjunction(s1, s2), 1);
49  1 assertEquals(SetUtils.countDisjunction(s2, s1), 1);
50   
51  1 s1.add(Color.yellow);
52  1 s1.add(Color.blue);
53  1 s2.add(new Color(Color.yellow.getRGB()));
54   
55    /*
56    * now s1 is {white, yellow, blue}
57    * s2 is {yellow'}
58    */
59  1 assertEquals(SetUtils.countDisjunction(s1, s2), 2);
60  1 s2.add(Color.blue);
61  1 assertEquals(SetUtils.countDisjunction(s1, s2), 1);
62  1 s2.add(Color.pink);
63  1 assertEquals(SetUtils.countDisjunction(s1, s2), 2);
64   
65    }
66    }