001    package nl.cwi.sen1.visplugin.csvexport;
002    
003    import junit.framework.TestCase;
004    
005    /**
006     * JUnit Testcase used to test the TableVisualizationWindow class
007     * 
008     * @author Antoine Savelkoul
009     * @date 09-03-2007
010     */
011    public class CsvExportVisualizationWindowTest extends TestCase {
012    
013        private CsvExportVisualizationWindow m_csvExportVisualizationWindow;
014        
015        /**
016         * Fixture setup.
017         * @author  Antoine Savelkoul
018         * @date    08-03-2007
019         */
020        protected void setUp() throws Exception { 
021            m_csvExportVisualizationWindow = new CsvExportVisualizationWindow();
022        }
023        
024        /**
025         * Tests if the window is created.
026         * @author  Antoine Savelkoul
027         * @date    08-03-2007
028         */
029        public void testCsvExportVisualizationWindow() {
030            assertNotNull(m_csvExportVisualizationWindow);
031        }
032    }