1 package junitx.example;2 3 import junit.framework.TestCase;4 5 /**6 * @version $Revision: 1.2 $, $Date: 2003/05/08 02:51:15 $7 * @author <a HREF="mailto:vbossica@users.sourceforge.net">Vladimir Ritz Bossicard</a>8 */9 public class ErrorTestCase extends TestCase {10 11 public void testError() {12 throw new NullPointerException ();13 }14 15 }