Clover icon

Coverage Report

  1. Project Clover database Mon Sep 2 2024 17:57:51 BST
  2. Package jalview.util

File SparseCountTest.java

 

Code metrics

0
40
6
1
111
74
6
0.15
6.67
6
1

Classes

Class Line # Actions
SparseCountTest 32 40 6
1.0100%
 

Contributing tests

This file is covered by 5 tests. .

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    import static org.testng.Assert.assertFalse;
25    import static org.testng.Assert.assertTrue;
26   
27    import jalview.gui.JvOptionPane;
28   
29    import org.testng.annotations.BeforeClass;
30    import org.testng.annotations.Test;
31   
 
32    public class SparseCountTest
33    {
34   
 
35  1 toggle @BeforeClass(alwaysRun = true)
36    public void setUpJvOptionPane()
37    {
38  1 JvOptionPane.setInteractiveMode(false);
39  1 JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
40    }
41   
 
42  1 toggle @Test(groups = "Functional")
43    public void testAdd()
44    {
45  1 SparseCount p = new SparseCount(8);
46  1 p.add('a', 1);
47  1 p.add('b', 2);
48  1 p.add('a', 3);
49  1 p.add('b', -4);
50  1 assertEquals(p.size(), 2);
51  1 assertEquals(p.get('a'), 4);
52  1 assertEquals(p.get('b'), -2);
53    }
54   
 
55  1 toggle @Test(groups = "Functional")
56    public void testPut()
57    {
58  1 SparseCount p = new SparseCount(8);
59  1 p.put('a', 3);
60  1 p.add('b', 2);
61  1 p.put('b', 4);
62  1 assertEquals(p.size(), 2);
63  1 assertEquals(p.get('a'), 3);
64  1 assertEquals(p.get('b'), 4);
65    }
66   
67    /**
68    * Test handling overflow of short by switching to counting ints
69    */
 
70  1 toggle @Test(groups = "Functional")
71    public void testOverflow()
72    {
73  1 SparseCount p = new SparseCount(8);
74  1 p.put('a', Short.MAX_VALUE - 1);
75  1 p.add('a', 1);
76  1 assertFalse(p.isUsingInt());
77  1 p.add('a', 1);
78  1 assertTrue(p.isUsingInt());
79    }
80   
81    /**
82    * Test handling underflow of short by switching to counting ints
83    */
 
84  1 toggle @Test(groups = "Functional")
85    public void testUnderflow()
86    {
87  1 SparseCount p = new SparseCount(8);
88  1 p.put('a', Short.MIN_VALUE + 1);
89  1 p.add('a', -1);
90  1 assertFalse(p.isUsingInt());
91  1 p.add('a', -1);
92  1 assertTrue(p.isUsingInt());
93    }
94   
 
95  1 toggle @Test(groups = "Functional")
96    public void testKeyAt_ValueAt()
97    {
98  1 SparseCount p = new SparseCount(8);
99  1 p.put('W', 12);
100  1 p.put('K', 9);
101  1 p.put('R', 6);
102  1 assertEquals(p.size(), 3);
103  1 assertEquals(p.keyAt(0), 'K');
104  1 assertEquals(p.valueAt(0), 9);
105  1 assertEquals(p.keyAt(1), 'R');
106  1 assertEquals(p.valueAt(1), 6);
107  1 assertEquals(p.keyAt(2), 'W');
108  1 assertEquals(p.valueAt(2), 12);
109    }
110   
111    }