Last active
December 23, 2015 17:00
-
-
Save kaydell/6666276 to your computer and use it in GitHub Desktop.
BlueJ JUnit Test Generation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package images; | |
import static org.junit.Assert.*; | |
import org.junit.After; | |
import org.junit.Before; | |
import org.junit.Test; | |
/** | |
* The test class ImageDrawTest. | |
* | |
* @author (your name) | |
* @version (a version number or a date) | |
*/ | |
public class ImageDrawTest | |
{ | |
/** | |
* Default constructor for test class ImageDrawTest | |
*/ | |
public ImageDrawTest() | |
{ | |
} | |
/** | |
* Sets up the test fixture. | |
* | |
* Called before every test case method. | |
*/ | |
@Before | |
public void setUp() | |
{ | |
} | |
/** | |
* Tears down the test fixture. | |
* | |
* Called after every test case method. | |
*/ | |
@After | |
public void tearDown() | |
{ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment