JAL-1264 first cut of panel for annotation show/hide options
[jalview.git] / test / jalview / gui / AnnotationChooserTest.java
1 package jalview.gui;
2
3 import jalview.io.AppletFormatAdapter;
4 import jalview.io.FileLoader;
5
6 import org.junit.Before;
7 import org.junit.Test;
8
9 /**
10  * Unit tests for AnnotationChooser
11  * 
12  * @author gmcarstairs
13  *
14  */
15 public class AnnotationChooserTest
16 {
17   final static String TEST_FILE = "./examples/uniref50.fa";
18   AnnotationChooser testee;
19
20   AlignFrame af;
21
22   @Before
23   public void setUp()
24   {
25     FileLoader fl = new jalview.io.FileLoader(false);
26     af = fl.LoadFileWaitTillLoaded(TEST_FILE,
27             AppletFormatAdapter.FILE);
28
29   }
30
31   @Test
32   public void testAlignmentLoader() throws Exception
33   {
34
35     AlignmentPanel parentPanel = new AlignmentPanel(af, af.getViewport());
36     testee = new AnnotationChooser(parentPanel);
37   }
38
39   @Test
40   public void testBuildFrame()
41   {
42
43   }
44 }