|
What this is
Other links
The source code/* * Sun Public License Notice * * The contents of this file are subject to the Sun Public License * Version 1.0 (the "License"). You may not use this file except in * compliance with the License. A copy of the License is available at * http://www.sun.com/ * * The Original Code is NetBeans. The Initial Developer of the Original * Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun * Microsystems, Inc. All Rights Reserved. */ package org.netbeans.modules.junit; import java.awt.*; import java.awt.event.*; import javax.swing.SwingUtilities; import org.openide.*; import org.openide.TopManager; import org.openide.util.NbBundle; import junit.framework.*; public class JUnitProgressTest extends TestCase { public JUnitProgressTest(java.lang.String testName) { super(testName); } public static void main(java.lang.String[] args) { junit.textui.TestRunner.run(suite()); } public static Test suite() { TestSuite suite = new TestSuite(JUnitProgressTest.class); return suite; } /** Test of showMe method, of class org.netbeans.modules.junit.JUnitProgress. */ public void testShowMe() { System.out.println("testShowMe"); fail("GUI dependent test."); } /** Test of hideMe method, of class org.netbeans.modules.junit.JUnitProgress. */ public void testHideMe() { System.out.println("testHideMe"); fail("GUI dependent test."); } /** Test of actionPerformed method, of class org.netbeans.modules.junit.JUnitProgress. */ public void testActionPerformed() { System.out.println("testActionPerformed"); fail("GUI dependent test."); } /** Test of setMessage method, of class org.netbeans.modules.junit.JUnitProgress. */ public void testSetMessage() { System.out.println("testSetMessage"); fail("GUI dependent test."); } /** Test of isCanceled method, of class org.netbeans.modules.junit.JUnitProgress. */ public void testIsCanceled() { System.out.println("testIsCanceled"); fail("GUI dependent test."); } } |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.