Clover icon

Coverage Report

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

File TDBeaconsPanelTest.java

 

Code metrics

0
9
6
1
88
49
6
0.67
1.5
6
1

Classes

Class Line # Actions
TDBeaconsPanelTest 40 9 6
0.660%
 

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.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   
 
40    public class TDBeaconsPanelTest
41    {
 
42  1 toggle @BeforeClass(alwaysRun = true)
43    public void setUpJvOptionPane()
44    {
45  1 JvOptionPane.setInteractiveMode(false);
46  1 JvOptionPane.setMockResponse(JvOptionPane.CANCEL_OPTION);
47    }
48   
 
49  1 toggle @BeforeMethod(alwaysRun = true)
50    public void setUp() throws Exception
51    {
52    }
53   
 
54  1 toggle @AfterMethod(alwaysRun = true)
55    public void tearDown() throws Exception
56    {
57    }
58   
 
59  1 toggle @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   
 
67  0 toggle @Test
68    public void getFTSframeTitleTest()
69    {
70  0 TDBeaconsFTSPanel searchPanel = new TDBeaconsFTSPanel(null);
71  0 System.out.println(searchPanel.getFTSFrameTitle());
72    }
73   
 
74  0 toggle @Test
75    public void testgetUNIPROTid()
76    {
77  0 String outcome = TDBeaconsFTSPanel.decodeSearchTerm("P01308");
78  0 System.out.println(outcome);
79    }
80    //
81    // @Test
82    // public void queryTest() {
83    // int outcome = TDBeaconsFTSPanel.executeParse("P01308");
84    // //System.out.println("query outcome :" + outcome);
85    // int expected_length = 110;
86    // assertEquals(outcome, expected_length);
87    // }
88    }