1 42 43 package org.jfree.ui.junit; 44 45 import java.awt.Font ; 46 import java.awt.Frame ; 47 48 import junit.framework.TestCase; 49 50 import org.jfree.ui.FontChooserDialog; 51 52 55 public class FontChooserDialogTest extends TestCase { 56 57 62 public FontChooserDialogTest(final String s) { 63 super(s); 64 } 65 66 69 public void testCreateDialog () { 70 try { 71 new FontChooserDialog 72 (new Frame (), "Title", false, new Font ("Serif", Font.PLAIN, 10)); 73 } 74 catch (UnsupportedOperationException use) { 75 } 77 } 78 } 79 | Popular Tags |