| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
|
| 17 |
|
|
| 18 |
|
|
| 19 |
|
|
| 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 |
|
|
| |
|
| 100% |
Uncovered Elements: 0 (22) |
Complexity: 1 |
Complexity Density: 0.05 |
|
| 31 |
|
public class SetUtilsTest |
| 32 |
|
{ |
| |
|
| 100% |
Uncovered Elements: 0 (21) |
Complexity: 1 |
Complexity Density: 0.05 |
1PASS
|
|
| 33 |
1 |
@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 |
|
|
| 57 |
|
|
| 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 |
|
} |