Created
January 29, 2019 04:24
-
-
Save richard1122/0e4e5fe0ab89b8245341070bb15283af to your computer and use it in GitHub Desktop.
custom intellij postfix template
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
.assertJ : AssertJ | |
ANY → org.assertj.core.api.Assertions.assertThat($expr$) | |
.isEqualTo: AssertJ And isEqualTo | |
ANY → org.assertj.core.api.Assertions.assertThat($expr$).isEqualTo($END$) | |
.isZero: AssertJ And isZero | |
ANY → org.assertj.core.api.Assertions.assertThat($expr$).isZero() | |
.isCloseTo: AssertJ And isCloseTo | |
ANY → org.assertj.core.api.Assertions.assertThat($expr$).isCloseTo($value#1$, Percentage.withPercentage(.1))$END$ | |
.isTrue: AssertJ And isTrue | |
ANY → org.assertj.core.api.Assertions.assertThat($expr$).isTrue() | |
.isFalse: AssertJ And isFalse | |
ANY → org.assertj.core.api.Assertions.assertThat($expr$).isFalse() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment