Parent Directory
|
Revision Log
* Organized Imports * Fixed a BuG in AS, PolygonSymbolEditGUI (Had to be Float instead of Double) * Renamed DesignLayerPanel to DesginMapLegend etc... * Bugfixed ManageLayerSytlesForMapDialog to trigger a preview of the new legend.
1 | package junit.skrueger.i8n; |
2 | |
3 | import java.util.ArrayList; |
4 | |
5 | import junit.framework.TestCase; |
6 | |
7 | import org.junit.Test; |
8 | |
9 | import skrueger.i8n.SwitchLanguageDialog; |
10 | |
11 | public class SwitchLanguageDialogTest extends TestCase { |
12 | @Test |
13 | public void testDialog() { |
14 | ArrayList<String> langsa = new ArrayList<String>(); |
15 | langsa.add("fr"); |
16 | langsa.add("tr"); |
17 | SwitchLanguageDialog switchLanguageDialog = new SwitchLanguageDialog(null, langsa); |
18 | switchLanguageDialog.setVisible(true); |
19 | } |
20 | } |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |