< prev index next >

test/javax/swing/JLightweightFrame/JLightweightFrameRoundTest.java

Print this page
rev 17435 : 8183286: Some java/awt and javax/swing tests miss headful jtreg keyword


   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test

  26  * @bug 8170387
  27  * @summary JLightweightFrame#syncCopyBuffer() may throw IOOBE
  28  * @modules java.desktop/sun.swing
  29  * @run main JLightweightFrameRoundTest
  30  */
  31 
  32 import sun.swing.JLightweightFrame;
  33 import sun.swing.LightweightContent;
  34 
  35 import javax.swing.*;
  36 
  37 public class JLightweightFrameRoundTest {
  38     public static void main(String[] args) throws Exception {
  39         SwingUtilities.invokeAndWait(() -> {
  40             JLightweightFrame jLightweightFrame = new JLightweightFrame();
  41             jLightweightFrame.setContent(new XLightweightContent());
  42             jLightweightFrame.setSize(600, 600);
  43             jLightweightFrame.notifyDisplayChanged(1.0001, 1.0001);
  44         });
  45     }




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @key headful
  27  * @bug 8170387
  28  * @summary JLightweightFrame#syncCopyBuffer() may throw IOOBE
  29  * @modules java.desktop/sun.swing
  30  * @run main JLightweightFrameRoundTest
  31  */
  32 
  33 import sun.swing.JLightweightFrame;
  34 import sun.swing.LightweightContent;
  35 
  36 import javax.swing.*;
  37 
  38 public class JLightweightFrameRoundTest {
  39     public static void main(String[] args) throws Exception {
  40         SwingUtilities.invokeAndWait(() -> {
  41             JLightweightFrame jLightweightFrame = new JLightweightFrame();
  42             jLightweightFrame.setContent(new XLightweightContent());
  43             jLightweightFrame.setSize(600, 600);
  44             jLightweightFrame.notifyDisplayChanged(1.0001, 1.0001);
  45         });
  46     }


< prev index next >