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

Annotation of /branches/2.4.x/src_junit/skrueger/i8n/SwitchLanguageDialogTest.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1305 - (hide annotations)
Wed Nov 24 14:39:51 2010 UTC (14 years, 3 months ago) by alfonx
Original Path: trunk/src_junit/skrueger/i8n/SwitchLanguageDialogTest.java
File size: 2565 byte(s)
Removed all uses of JUNit 3 testCase
1 alfonx 244 /*******************************************************************************
2     * Copyright (c) 2009 Martin O. J. Schmitz.
3     *
4     * This file is part of the SCHMITZM library - a collection of utility
5 alfonx 256 * classes based on Java 1.6, focusing (not only) on Java Swing
6 alfonx 244 * 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 alfonx 862 * Stefan A. Tzeggai - additional utility classes
29 alfonx 244 ******************************************************************************/
30 alfonx 446 package skrueger.i8n;
31 alfonx 140
32 alfonx 1305 import static org.junit.Assert.assertTrue;
33    
34 alfonx 140 import java.util.ArrayList;
35    
36 alfonx 1098 import org.junit.Test;
37    
38 alfonx 1305 import schmitzm.junit.TestingClass;
39 alfonx 1098 import schmitzm.swing.TestingUtil;
40    
41 alfonx 1305 public class SwitchLanguageDialogTest extends TestingClass {
42 alfonx 392
43 alfonx 1098 @Test
44     public void testDialog() throws Throwable {
45 alfonx 1099
46 alfonx 1138 if (!TestingUtil.isInteractive())
47 alfonx 1099 // Test needed here because following GUI creation would crash
48     // without X11 DISPLAY
49     return;
50    
51 alfonx 1098 ArrayList<String> langs = new ArrayList<String>();
52 alfonx 1150 langs.add("tr");
53 alfonx 1098 langs.add("fr");
54 alfonx 1150 langs.add("kj");
55     TestingUtil.testGui(new SwitchLanguageDialog(null, langs, false), 20);
56 alfonx 140 }
57 alfonx 1098
58     @Test
59     public void testDialogDoesntAppearIf0OrOneLangOnly() throws Throwable {
60 alfonx 1138 if (!TestingUtil.isInteractive())
61 alfonx 1099 // Test needed here because following GUI creation would crash
62     // without X11 DISPLAY
63     return;
64    
65 alfonx 1098 ArrayList<String> langs = new ArrayList<String>();
66     langs.add("fr");
67    
68     long startTime = System.currentTimeMillis();
69     TestingUtil.testGui(new SwitchLanguageDialog(null, langs, false), 2);
70     assertTrue("dialog did pop up incorrectly", System.currentTimeMillis()
71     - startTime < 1000);
72     }
73    
74 alfonx 140 }

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26