1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
package jalview.fts.threedbeacons; |
22 |
|
|
23 |
|
import static org.testng.AssertJUnit.assertEquals; |
24 |
|
import static org.testng.AssertJUnit.assertTrue; |
25 |
|
|
26 |
|
import jalview.fts.service.pdb.PDBFTSPanel; |
27 |
|
import jalview.fts.service.threedbeacons.TDBeaconsFTSPanel; |
28 |
|
import jalview.gui.JvOptionPane; |
29 |
|
|
30 |
|
import javax.swing.JComboBox; |
31 |
|
import javax.swing.JInternalFrame; |
32 |
|
|
33 |
|
import org.testng.annotations.AfterMethod; |
34 |
|
import org.testng.annotations.BeforeClass; |
35 |
|
import org.testng.annotations.BeforeMethod; |
36 |
|
import org.testng.annotations.Test; |
37 |
|
|
38 |
|
import junit.extensions.PA; |
39 |
|
|
|
|
| 60% |
Uncovered Elements: 6 (15) |
Complexity: 6 |
Complexity Density: 0.67 |
|
40 |
|
public class TDBeaconsPanelTest |
41 |
|
{ |
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
42 |
1 |
@BeforeClass(alwaysRun = true)... |
43 |
|
public void setUpJvOptionPane() |
44 |
|
{ |
45 |
1 |
JvOptionPane.setInteractiveMode(false); |
46 |
1 |
JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION); |
47 |
|
} |
48 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
49 |
1 |
@BeforeMethod(alwaysRun = true)... |
50 |
|
public void setUp() throws Exception |
51 |
|
{ |
52 |
|
} |
53 |
|
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
54 |
1 |
@AfterMethod(alwaysRun = true)... |
55 |
|
public void tearDown() throws Exception |
56 |
|
{ |
57 |
|
} |
58 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (3) |
Complexity: 1 |
Complexity Density: 0.33 |
1PASS
|
|
59 |
1 |
@Test(groups = { "Functional" })... |
60 |
|
public void populateCmbSearchTargetOptionsTest() |
61 |
|
{ |
62 |
1 |
TDBeaconsFTSPanel searchPanel = new TDBeaconsFTSPanel(null); |
63 |
1 |
assertTrue(searchPanel.getCmbSearchTarget().getItemCount() > 0); |
64 |
1 |
searchPanel.populateCmbSearchTargetOptions(); |
65 |
|
} |
66 |
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
1PASS
|
|
67 |
0 |
@Test... |
68 |
|
public void getFTSframeTitleTest() |
69 |
|
{ |
70 |
0 |
TDBeaconsFTSPanel searchPanel = new TDBeaconsFTSPanel(null); |
71 |
0 |
System.out.println(searchPanel.getFTSFrameTitle()); |
72 |
|
} |
73 |
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
1PASS
|
|
74 |
0 |
@Test... |
75 |
|
public void testgetUNIPROTid() |
76 |
|
{ |
77 |
0 |
String outcome = TDBeaconsFTSPanel.decodeSearchTerm("P01308"); |
78 |
0 |
System.out.println(outcome); |
79 |
|
} |
80 |
|
|
81 |
|
|
82 |
|
|
83 |
|
|
84 |
|
|
85 |
|
|
86 |
|
|
87 |
|
|
88 |
|
} |