/[schmitzm]/branches/2.0-RC1/src_junit/skrueger/i8n/SwitchLanguageDialogTest.java
ViewVC logotype

Contents of /branches/2.0-RC1/src_junit/skrueger/i8n/SwitchLanguageDialogTest.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 140 - (show annotations)
Sun Jun 14 17:24:44 2009 UTC (15 years, 8 months ago) by alfonx
Original Path: trunk/src/junit/skrueger/i8n/SwitchLanguageDialogTest.java
File size: 477 byte(s)
* Not really an atomic commit: hacking session going on.. just switching from laptop to dektop.

* Minimally improved dialog to choose a language if the atlas only contains languages that your computer doesn't.
* GP: Added a menu item to send the logfile by email to Steve
* GP: List of languages to select from is now sorted
* Version-management in build.xml ... using a release.properties
** TODO: Still need integration with the webpage
* BUGFIXed: Layers expanding and collapsing every time while the AS is updating the preview
* UNDER WORK: AV: Only show selection-related buttons when they make sense.
1 package junit.skrueger.i8n;
2
3 import java.util.ArrayList;
4
5 import org.junit.Test;
6
7 import skrueger.i8n.SwitchLanguageDialog;
8 import junit.framework.TestCase;
9
10 public class SwitchLanguageDialogTest extends TestCase {
11 @Test
12 public void testDialog() {
13 ArrayList<String> langsa = new ArrayList<String>();
14 langsa.add("fr");
15 langsa.add("tr");
16 SwitchLanguageDialog switchLanguageDialog = new SwitchLanguageDialog(null, langsa);
17 switchLanguageDialog.setVisible(true);
18 }
19 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26