Advertisement
jdalbey

unittest.tmpl for JUnit 3

Jan 12th, 2015
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.58 KB | None | 0 0
  1. $PKGLINE
  2.  
  3. /**
  4.  * The test class $CLASSNAME.
  5.  *
  6.  * @author (your name)
  7.  * @version (a version number or a date)
  8.  */
  9. public class $CLASSNAME extends junit.framework.TestCase
  10. {
  11.     /**
  12.      * Default constructor for test class $CLASSNAME
  13.      */
  14.     public $CLASSNAME()
  15.     {
  16.     }
  17.  
  18.     /**
  19.      * Sets up the test fixture.
  20.      *
  21.      * Called before every test case method.
  22.      */
  23.     public void setUp()
  24.     {
  25.     }
  26.  
  27.     /**
  28.      * Tears down the test fixture.
  29.      *
  30.      * Called after every test case method.
  31.      */
  32.     public void tearDown()
  33.     {
  34.     }
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement