source: josm/trunk/test/functional/org/openstreetmap/josm/gui/dialogs/changeset/ChangesetCacheManagerTestFT.java@ 17275

Last change on this file since 17275 was 17275, checked in by Don-vip, 3 years ago

see #16567 - upgrade almost all tests to JUnit 5, except those depending on WiremockRule

See https://github.com/tomakehurst/wiremock/issues/684

  • Property svn:eol-style set to native
File size: 445 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.dialogs.changeset;
3
4import javax.swing.JFrame;
5
6class ChangesetCacheManagerTestFT extends JFrame {
7
8 private ChangesetCacheManager manager;
9
10 public void start() {
11 manager = new ChangesetCacheManager();
12 manager.setVisible(true);
13 }
14
15 public static void main(String[] args) {
16 new ChangesetCacheManagerTestFT().start();
17 }
18}
Note: See TracBrowser for help on using the repository browser.