Created
December 1, 2017 15:33
-
-
Save ButterflyCoder/a0e1262efd2587cb8c4c66e8efd1e5d1 to your computer and use it in GitHub Desktop.
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
.tgnotnull: assert equals | |
java.lang.Object → Assert.assertNotNull($expr$); | |
.tgassert: assert equals | |
BOOLEAN -> Assert.assertTrue($expr$); | |
.tgassert: assert equals | |
java.lang.Object → Assert.assertEquals($expr$, $END$); | |
.tgassert: assert equals | |
NUMBER → Assert.assertEquals($expr$, $END$); | |
.log: log the variable | |
java.lang.Object → log.info("$expr$={}", $expr$); | |
.log: log the variable | |
NUMBER → log.info("$expr$={}", $expr$); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment