Path: blob/master/test/jdk/sun/java2d/marlin/Renderer/TestNPE.java
41152 views
/*1* Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation.7*8* This code is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License11* version 2 for more details (a copy is included in the LICENSE file that12* accompanied this code).13*14* You should have received a copy of the GNU General Public License version15* 2 along with this work; if not, write to the Free Software Foundation,16* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.17*18* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA19* or visit www.oracle.com if you need additional information or have any20* questions.21*/2223/**24* @test25* @bug 688749426*27* @summary Verifies that no NullPointerException is thrown in Pisces Renderer28* under certain circumstances.29*30* @run main TestNPE31*/3233import java.awt.*;34import java.awt.geom.*;35import java.awt.image.BufferedImage;3637public class TestNPE {3839private static void paint(Graphics g) {40Graphics2D g2d = (Graphics2D) g;41g2d.setRenderingHint(RenderingHints.KEY_ANTIALIASING,42RenderingHints.VALUE_ANTIALIAS_ON);43g2d.setClip(0, 0, 0, 0);44g2d.setTransform(45new AffineTransform(4.0f, 0.0f, 0.0f, 4.0f, -1248.0f, -744.0f));46g2d.draw(new Line2D.Float(131.21428571428572f, 33.0f,47131.21428571428572f, 201.0f));48}4950public static void main(String[] args) {51BufferedImage im = new BufferedImage(100, 100,52BufferedImage.TYPE_INT_ARGB);5354// Trigger exception in main thread.55Graphics g = im.getGraphics();56paint(g);57}58}596061