Created
March 13, 2012 10:19
-
-
Save stefanbirkner/2028005 to your computer and use it in GitHub Desktop.
IntelliJ Idea Template for a JUnit4 test.
This file contains hidden or 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
| #if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end | |
| import static org.junit.rules.ExpectedException.none; | |
| public class ${NAME} { | |
| @Rule | |
| public final ExpectedException thrown = none(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment