1 package org.scrumalliance.scrumsite; 2 3 import junit.framework.Test; 4 import junit.framework.TestCase; 5 import junit.framework.TestSuite; 6 7 /*** 8 * Unit test for simple App. 9 * 10 * @author <a href="mailto:jason@zenplex.com">Jason van Zyl</a> 11 */ 12 public class NaughtyTest 13 extends AbstractTestCase 14 { 15 /*** 16 * Create the test case 17 * 18 * @param testName name of the test case 19 */ 20 public NaughtyTest( String testName ) 21 { 22 super( testName ); 23 } 24 25 /*** 26 * @return the suite of tests being tested 27 */ 28 public static Test suite() 29 { 30 return new TestSuite( NaughtyTest.class ); 31 } 32 33 /*** 34 * Rigourous Test :-) 35 */ 36 public void testApp() 37 { 38 // Crash and burn! 39 } 40 }

This page was automatically generated by Maven