Skip to content

Commit

Permalink
Added "DummyFrame" for test purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
wglanzer committed Apr 12, 2020
1 parent 1642067 commit 0ea7350
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/test/java/com/github/wglanzer/swingexplorer/DummyFrame.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package com.github.wglanzer.swingexplorer;

import javax.swing.*;

/**
* @author w.glanzer, 12.04.2020
*/
public class DummyFrame
{

public static void main(String[] args)
{
JFrame frame = new JFrame("dummy");
frame.setBounds(100, 100, 800, 600);
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
SwingUtilities.invokeLater(() -> frame.setVisible(true));
}

}

0 comments on commit 0ea7350

Please sign in to comment.