====== Fest ======
* 개발 중단된 듯. [[java:assertj|AssertJ]] 사용할 것.
* [[https://github.com/alexruiz/fest-assert-2.x/wiki|FEST: Fixtures for Easy Software Testing]]
===== IntelliJ File Template =====
import static org.fest.assertions.api.Assertions.*;
===== IntelliJ Live Template for try/catch =====
* abbrevication : ''trytest''
* ''Reformat according to Style'' : check
* ''Use static import if possible'' : check
* ''Shorten FQ names'' : check
* ''Applicable in Java: statement''
* Template text :
try {
org.fest.assertions.api.Assertions.failBecauseExceptionWasNotThrown($ExceptionClass$.class);
} catch ($ExceptionClass$ ex) {
org.fest.assertions.api.Assertions.assertThat(ex).hasMessage("");
}