/[schmitzm]/branches/2.3.x/src_junit/skrueger/i8n/SwitchLanguageDialogTest.java
ViewVC logotype

Contents of /branches/2.3.x/src_junit/skrueger/i8n/SwitchLanguageDialogTest.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1138 - (show annotations)
Fri Oct 15 21:31:18 2010 UTC (14 years, 4 months ago) by alfonx
Original Path: trunk/src_junit/skrueger/i8n/SwitchLanguageDialogTest.java
File size: 2496 byte(s)
New method in IOUtil to create zip files from folders with relative paths inside.
1 /*******************************************************************************
2 * Copyright (c) 2009 Martin O. J. Schmitz.
3 *
4 * This file is part of the SCHMITZM library - a collection of utility
5 * classes based on Java 1.6, focusing (not only) on Java Swing
6 * and the Geotools library.
7 *
8 * The SCHMITZM project is hosted at:
9 * http://wald.intevation.org/projects/schmitzm/
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public License
13 * as published by the Free Software Foundation; either version 3
14 * of the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public License (license.txt)
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 * or try this link: http://www.gnu.org/licenses/lgpl.html
25 *
26 * Contributors:
27 * Martin O. J. Schmitz - initial API and implementation
28 * Stefan A. Tzeggai - additional utility classes
29 ******************************************************************************/
30 package skrueger.i8n;
31
32 import java.util.ArrayList;
33
34 import junit.framework.TestCase;
35
36 import org.junit.Test;
37
38 import schmitzm.swing.TestingUtil;
39
40 public class SwitchLanguageDialogTest extends TestCase {
41
42 @Test
43 public void testDialog() throws Throwable {
44
45 if (!TestingUtil.isInteractive())
46 // Test needed here because following GUI creation would crash
47 // without X11 DISPLAY
48 return;
49
50 ArrayList<String> langs = new ArrayList<String>();
51 langs.add("fr");
52 langs.add("tr");
53 TestingUtil.testGui(new SwitchLanguageDialog(null, langs, false), 10);
54 }
55
56 @Test
57 public void testDialogDoesntAppearIf0OrOneLangOnly() throws Throwable {
58 if (!TestingUtil.isInteractive())
59 // Test needed here because following GUI creation would crash
60 // without X11 DISPLAY
61 return;
62
63 ArrayList<String> langs = new ArrayList<String>();
64 langs.add("fr");
65
66 long startTime = System.currentTimeMillis();
67 TestingUtil.testGui(new SwitchLanguageDialog(null, langs, false), 2);
68 assertTrue("dialog did pop up incorrectly", System.currentTimeMillis()
69 - startTime < 1000);
70 }
71
72 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26