Clover icon

Coverage Report

  1. Project Clover database Tue Mar 10 2026 14:58:44 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
0.00%
 

Contributing tests

No tests hitting this source file were found.

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  0 toggle @Test(groups = "Functional")
34    public void testCountDisjunction()
35    {
36  0 Set<Color> s1 = new HashSet<Color>();
37  0 assertEquals(SetUtils.countDisjunction(null, null), 0);
38  0 assertEquals(SetUtils.countDisjunction(s1, null), 0);
39  0 assertEquals(SetUtils.countDisjunction(null, s1), 0);
40  0 s1.add(Color.white);
41  0 assertEquals(SetUtils.countDisjunction(s1, null), 1);
42  0 assertEquals(SetUtils.countDisjunction(null, s1), 1);
43  0 assertEquals(SetUtils.countDisjunction(s1, null), 1);
44  0 assertEquals(SetUtils.countDisjunction(s1, s1), 0);
45   
46  0 Set<Object> s2 = new HashSet<Object>();
47  0 assertEquals(SetUtils.countDisjunction(s2, s2), 0);
48  0 assertEquals(SetUtils.countDisjunction(s1, s2), 1);
49  0 assertEquals(SetUtils.countDisjunction(s2, s1), 1);
50   
51  0 s1.add(Color.yellow);
52  0 s1.add(Color.blue);
53  0 s2.add(new Color(Color.yellow.getRGB()));
54   
55    /*
56    * now s1 is {white, yellow, blue}
57    * s2 is {yellow'}
58    */
59  0 assertEquals(SetUtils.countDisjunction(s1, s2), 2);
60  0 s2.add(Color.blue);
61  0 assertEquals(SetUtils.countDisjunction(s1, s2), 1);
62  0 s2.add(Color.pink);
63  0 assertEquals(SetUtils.countDisjunction(s1, s2), 2);
64   
65    }
66    }