Skip to content

Instantly share code, notes, and snippets.

@kaydell
Last active December 23, 2015 17:00
Show Gist options
  • Save kaydell/6666276 to your computer and use it in GitHub Desktop.
Save kaydell/6666276 to your computer and use it in GitHub Desktop.
BlueJ JUnit Test Generation
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