Changeset 31823 in osm for applications/editors/josm
- Timestamp:
- 2015-12-12T20:17:36+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryPreferenceSettingTest.java
r31820 r31823 5 5 import static org.junit.Assert.assertTrue; 6 6 7 import java.awt.GraphicsEnvironment; 7 8 import java.lang.reflect.Field; 8 9 … … 20 21 @Test 21 22 public void testAddGui() { 23 if (GraphicsEnvironment.isHeadless()) { 24 return; 25 } 22 26 PreferenceTabbedPane tabs = new PreferenceTabbedPane(); 23 27 tabs.buildGui(); … … 31 35 @Test 32 36 public void testLoginLogout() throws NoSuchFieldException, SecurityException, IllegalArgumentException, IllegalAccessException { 37 if (GraphicsEnvironment.isHeadless()) { 38 return; 39 } 33 40 PreferenceTabbedPane tabs = new PreferenceTabbedPane(); 34 41 tabs.buildGui();
Note:
See TracChangeset
for help on using the changeset viewer.